Subversion Repositories SmartDukaan

Rev

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

Rev 28272 Rev 30030
Line 25... Line 25...
25
	private int isUpdate;
25
	private int isUpdate;
26
	@Column(name = "partner_id")
26
	@Column(name = "partner_id")
27
	private int partnerId;
27
	private int partnerId;
28
	@Column(name = "brand_limit")
28
	@Column(name = "brand_limit")
29
	private float brandLimit;
29
	private float brandLimit;
-
 
30
	
-
 
31
	@Column(name = "min_stock_limit")
-
 
32
	private float minStockLimit;
30
	@Column(name = "create_timestamp")
33
	@Column(name = "create_timestamp")
31
	private LocalDateTime createdTimestamp;
34
	private LocalDateTime createdTimestamp;
32
 
35
 
33
	@Column(name = "updated_timestamp")
36
	@Column(name = "updated_timestamp")
34
	private LocalDateTime updatedTimestamp;
37
	private LocalDateTime updatedTimestamp;
35
 
38
 
36
	public String getBrandName() {
39
	public String getBrandName() {
37
		return brandName;
40
		return brandName;
38
	}
41
	}
-
 
42
	
-
 
43
	
-
 
44
	
-
 
45
 
-
 
46
	public float getMinStockLimit() {
-
 
47
		return minStockLimit;
-
 
48
	}
-
 
49
 
-
 
50
 
-
 
51
 
-
 
52
 
-
 
53
	public void setMinStockLimit(float minStockLimit) {
-
 
54
		this.minStockLimit = minStockLimit;
-
 
55
	}
-
 
56
 
-
 
57
 
-
 
58
 
39
 
59
 
40
	public void setBrandName(String brandName) {
60
	public void setBrandName(String brandName) {
41
		this.brandName = brandName;
61
		this.brandName = brandName;
42
	}
62
	}
43
 
63
 
Line 95... Line 115...
95
 
115
 
96
	public void setIsUpdate(int isUpdate) {
116
	public void setIsUpdate(int isUpdate) {
97
		this.isUpdate = isUpdate;
117
		this.isUpdate = isUpdate;
98
	}
118
	}
99
 
119
 
-
 
120
	
100
	@Override
121
	@Override
101
	public String toString() {
122
	public String toString() {
102
		return "RetailerBrandsLimit [id=" + id + ", brandName=" + brandName + ", partnerId=" + partnerId
123
		return "RetailerBrandsLimit [id=" + id + ", brandName=" + brandName + ", isUpdate=" + isUpdate + ", partnerId="
103
				+ ", brandLimit=" + brandLimit + ", createdTimestamp=" + createdTimestamp + ", updatedTimestamp="
124
				+ partnerId + ", brandLimit=" + brandLimit + ", minStockLimit=" + minStockLimit + ", createdTimestamp="
104
				+ updatedTimestamp + "]";
125
				+ createdTimestamp + ", updatedTimestamp=" + updatedTimestamp + "]";
105
	}
126
	}
106
 
127
 
-
 
128
 
-
 
129
 
-
 
130
 
107
	public RetailerBrandsLimit() {
131
	public RetailerBrandsLimit() {
108
		super();
132
		super();
109
		
133
		
110
	}
134
	}
111
	
135