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 30031
Line 22... Line 22...
22
	private String brandName;
22
	private String brandName;
23
	@Column(name = "brand_limit")
23
	@Column(name = "brand_limit")
24
	private float brandLimit;
24
	private float brandLimit;
25
	@Column(name = "created_time_stamp")
25
	@Column(name = "created_time_stamp")
26
	private LocalDateTime createdTimestamp;
26
	private LocalDateTime createdTimestamp;
-
 
27
	
-
 
28
	@Column(name = "stock_limit")
-
 
29
	private float stockLimit;
27
 
30
 
28
	@Column(name = "updated_time_stamp")
31
	@Column(name = "updated_time_stamp")
29
	private LocalDateTime updatedTimestamp;
32
	private LocalDateTime updatedTimestamp;
30
 
33
 
31
	public int getId() {
34
	public int getId() {
Line 33... Line 36...
33
	}
36
	}
34
 
37
 
35
	public void setId(int id) {
38
	public void setId(int id) {
36
		this.id = id;
39
		this.id = id;
37
	}
40
	}
-
 
41
	
-
 
42
	public float getStockLimit() {
-
 
43
		return stockLimit;
-
 
44
	}
-
 
45
 
-
 
46
	public void setStockLimit(float stockLimit) {
-
 
47
		this.stockLimit = stockLimit;
-
 
48
	}
38
 
49
 
39
	public String getBrandName() {
50
	public String getBrandName() {
40
		return brandName;
51
		return brandName;
41
	}
52
	}
42
 
53
 
Line 66... Line 77...
66
 
77
 
67
	public void setUpdatedTimestamp(LocalDateTime updatedTimestamp) {
78
	public void setUpdatedTimestamp(LocalDateTime updatedTimestamp) {
68
		this.updatedTimestamp = updatedTimestamp;
79
		this.updatedTimestamp = updatedTimestamp;
69
	}
80
	}
70
 
81
 
-
 
82
	
-
 
83
 
71
	@Override
84
	@Override
72
	public String toString() {
85
	public String toString() {
73
		return "BrandLimit [id=" + id + ", brandName=" + brandName + ", brandLimit=" + brandLimit
86
		return "BrandLimit [id=" + id + ", brandName=" + brandName + ", brandLimit=" + brandLimit
74
				+ ", createdTimestamp=" + createdTimestamp + ", updatedTimestamp=" + updatedTimestamp + "]";
87
				+ ", createdTimestamp=" + createdTimestamp + ", stockLimit=" + stockLimit + ", updatedTimestamp="
-
 
88
				+ updatedTimestamp + "]";
75
	}
89
	}
76
 
90
 
77
	public BrandLimit() {
91
	public BrandLimit() {
78
		super();
92
		super();
79
		// TODO Auto-generated constructor stub
93
		// TODO Auto-generated constructor stub