Subversion Repositories SmartDukaan

Rev

Rev 31159 | Rev 32681 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31159 Rev 32074
Line 13... Line 13...
13
import javax.persistence.Transient;
13
import javax.persistence.Transient;
14
 
14
 
15
import com.spice.profitmandi.dao.model.DailyStatementModel;
15
import com.spice.profitmandi.dao.model.DailyStatementModel;
16
 
16
 
17
@Entity
17
@Entity
18
@Table(name = "transaction.loan", schema = "transaction")
18
@Table(name = "transaction.loan")
19
public class Loan {
19
public class Loan {
20
 
20
 
21
	@Id
21
	@Id
22
	@Column(name = "id", unique = true, updatable = false)
22
	@Column(name = "id", unique = true, updatable = false)
23
	@GeneratedValue(strategy = GenerationType.IDENTITY)
23
	@GeneratedValue(strategy = GenerationType.IDENTITY)