Subversion Repositories SmartDukaan

Rev

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

Rev 24049 Rev 24410
Line 39... Line 39...
39
	@GeneratedValue(strategy = GenerationType.IDENTITY)
39
	@GeneratedValue(strategy = GenerationType.IDENTITY)
40
	private int id;
40
	private int id;
41
 
41
 
42
	@Column(name = "catalog_id")
42
	@Column(name = "catalog_id")
43
	private int catalogItemId;
43
	private int catalogItemId;
-
 
44
 
-
 
45
	@Column(name = "amount")
-
 
46
	private float amount;
-
 
47
	
-
 
48
	@Column(name="new_dp")
-
 
49
	private float newDp;
-
 
50
	
-
 
51
	@Column(name="old_dp")
-
 
52
	private float oldDp;
-
 
53
	
-
 
54
	@Column(name="mop")
-
 
55
	private float mop;
-
 
56
	
-
 
57
	@Column(name="tp")
-
 
58
	private float tp;
-
 
59
	
-
 
60
	@Column(name="nlc")
-
 
61
	private float nlc;
44
	
62
	
45
	@Transient
63
	@Transient
46
	private String description;
64
	private String description;
47
 
65
 
48
	public String getDescription() {
66
	public String getDescription() {
Line 51... Line 69...
51
 
69
 
52
	public void setDescription(String description) {
70
	public void setDescription(String description) {
53
		this.description = description;
71
		this.description = description;
54
	}
72
	}
55
 
73
 
56
	@Column(name = "amount")
-
 
57
	private float amount;
-
 
58
	
-
 
59
	@Column(name="new_dp")
-
 
60
	private float newDp;
-
 
61
	
-
 
62
	
-
 
63
	@Column(name="mop")
-
 
64
	private float mop;
-
 
65
	
74
	
66
	public float getMop() {
75
	public float getMop() {
67
		return mop;
76
		return mop;
68
	}
77
	}
69
 
78
 
70
	public void setMop(float mop) {
79
	public void setMop(float mop) {
71
		this.mop = mop;
80
		this.mop = mop;
72
	}
81
	}
73
 
82
 
74
	@Column(name="old_dp")
-
 
75
	private float oldDp;
-
 
76
	
-
 
77
	@Column(name="tp")
-
 
78
	private float tp;
-
 
79
	
-
 
80
	@Column(name="nlc")
-
 
81
	private float nlc;
-
 
82
 
-
 
83
 
83
 
84
	public float getNewDp() {
84
	public float getNewDp() {
85
		return newDp;
85
		return newDp;
86
	}
86
	}
87
 
87