Subversion Repositories SmartDukaan

Rev

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

Rev 30030 Rev 30044
Line 15... Line 15...
15
	
15
	
16
	@Id
16
	@Id
17
	@Column(name = "id", unique = false, updatable = false)
17
	@Column(name = "id", unique = false, updatable = false)
18
	@GeneratedValue(strategy = GenerationType.IDENTITY)
18
	@GeneratedValue(strategy = GenerationType.IDENTITY)
19
	private int id;
19
	private int id;
20
	
20
 
21
	@Column(name = "brand_name")
21
	@Column(name = "brand_name")
22
	private String brandName;
22
	private String brandName;
23
	
23
 
24
	@Column(name = "is_update")
24
	@Column(name = "is_update")
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
	
30
 
31
	@Column(name = "min_stock_limit")
31
	@Column(name = "min_stock_limit")
32
	private float minStockLimit;
32
	private float minStockLimit;
33
	@Column(name = "create_timestamp")
33
	@Column(name = "create_timestamp")
34
	private LocalDateTime createdTimestamp;
34
	private LocalDateTime createdTimestamp;
35
 
35
 
Line 45... Line 45...
45
 
45
 
46
	public float getMinStockLimit() {
46
	public float getMinStockLimit() {
47
		return minStockLimit;
47
		return minStockLimit;
48
	}
48
	}
49
 
49
 
50
 
-
 
51
 
-
 
52
 
-
 
53
	public void setMinStockLimit(float minStockLimit) {
50
	public void setMinStockLimit(float minStockLimit) {
54
		this.minStockLimit = minStockLimit;
51
		this.minStockLimit = minStockLimit;
55
	}
52
	}
56
 
53
 
57
 
-
 
58
 
-
 
59
 
-
 
60
	public void setBrandName(String brandName) {
54
	public void setBrandName(String brandName) {
61
		this.brandName = brandName;
55
		this.brandName = brandName;
62
	}
56
	}
63
 
57
 
64
	public int getPartnerId() {
58
	public int getPartnerId() {
Line 67... Line 61...
67
 
61
 
68
	public void setPartnerId(int partnerId) {
62
	public void setPartnerId(int partnerId) {
69
		this.partnerId = partnerId;
63
		this.partnerId = partnerId;
70
	}
64
	}
71
 
65
 
72
 
-
 
73
	
-
 
74
 
-
 
75
	public float getBrandLimit() {
66
	public float getBrandLimit() {
76
		return brandLimit;
67
		return brandLimit;
77
	}
68
	}
78
 
69
 
79
	public void setBrandLimit(float brandLimit) {
70
	public void setBrandLimit(float brandLimit) {
Line 93... Line 84...
93
	}
84
	}
94
 
85
 
95
	public void setUpdatedTimestamp(LocalDateTime updatedTimestamp) {
86
	public void setUpdatedTimestamp(LocalDateTime updatedTimestamp) {
96
		this.updatedTimestamp = updatedTimestamp;
87
		this.updatedTimestamp = updatedTimestamp;
97
	}
88
	}
98
	
-
 
99
	
-
 
100
 
89
 
101
	public int getId() {
90
	public int getId() {
102
		return id;
91
		return id;
103
	}
92
	}
104
 
93
 
105
	public void setId(int id) {
94
	public void setId(int id) {
106
		this.id = id;
95
		this.id = id;
107
	}
96
	}
108
	
-
 
109
	
-
 
110
 
97
 
111
	
-
 
112
	public int getIsUpdate() {
98
	public int getIsUpdate() {
113
		return isUpdate;
99
		return isUpdate;
114
	}
100
	}
115
 
101
 
116
	public void setIsUpdate(int isUpdate) {
102
	public void setIsUpdate(int isUpdate) {
117
		this.isUpdate = isUpdate;
103
		this.isUpdate = isUpdate;
118
	}
104
	}
119
 
105
 
120
	
-
 
121
	@Override
106
	@Override
122
	public String toString() {
107
	public String toString() {
123
		return "RetailerBrandsLimit [id=" + id + ", brandName=" + brandName + ", isUpdate=" + isUpdate + ", partnerId="
108
		return "RetailerBrandsLimit [id=" + id + ", brandName=" + brandName + ", isUpdate=" + isUpdate + ", partnerId="
124
				+ partnerId + ", brandLimit=" + brandLimit + ", minStockLimit=" + minStockLimit + ", createdTimestamp="
109
				+ partnerId + ", brandLimit=" + brandLimit + ", minStockLimit=" + minStockLimit + ", createdTimestamp="
125
				+ createdTimestamp + ", updatedTimestamp=" + updatedTimestamp + "]";
110
				+ createdTimestamp + ", updatedTimestamp=" + updatedTimestamp + "]";
126
	}
111
	}
127
 
112
 
128
 
-
 
129
 
-
 
130
 
-
 
131
	public RetailerBrandsLimit() {
113
	public RetailerBrandsLimit() {
132
		super();
114
		super();
133
		
115
 
134
	}
116
	}
135
	
-
 
136
	
-
 
137
	
-
 
138
	
-
 
139
 
117
 
140
}
118
}