Subversion Repositories SmartDukaan

Rev

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

Rev 35153 Rev 35154
Line 8... Line 8...
8
	private long todayPOValue;
8
	private long todayPOValue;
9
	private long todayPOBilledValue;
9
	private long todayPOBilledValue;
10
	private long todayBilledValue;
10
	private long todayBilledValue;
11
	private int partiesBilled;
11
	private int partiesBilled;
12
 
12
 
13
 
-
 
14
	public BrandAuthUserPOModel(Integer authUserId, String brand, Long todayPOValue, Long todayPOBilledValue, Long todayBilledValue, Integer partiesBilled) {
-
 
15
		this.authUserId = authUserId != null ? authUserId : 0;
-
 
16
		this.brand = brand;
13
	public BrandAuthUserPOModel() {
17
		this.todayPOValue = todayPOValue != null ? todayPOValue : 0L;
-
 
18
		this.todayPOBilledValue = todayPOBilledValue != null ? todayPOBilledValue : 0L;
-
 
19
		this.todayBilledValue = todayBilledValue != null ? todayBilledValue : 0L;
-
 
20
		this.partiesBilled = partiesBilled != null ? partiesBilled : 0;
-
 
21
	}
14
	}
22
 
15
 
23
 
-
 
-
 
16
	public BrandAuthUserPOModel(int authUserId, String brand, long todayPOValue, long todayPOBilledValue, long todayBilledValue, int partiesBilled) {
24
	public BrandAuthUserPOModel() {
17
		this.authUserId = authUserId;
-
 
18
		this.brand = brand;
-
 
19
		this.todayPOValue = todayPOValue;
-
 
20
		this.todayPOBilledValue = todayPOBilledValue;
-
 
21
		this.todayBilledValue = todayBilledValue;
-
 
22
		this.partiesBilled = partiesBilled;
25
	}
23
	}
26
 
24
 
27
	@Override
25
	@Override
28
	public boolean equals(Object o) {
26
	public boolean equals(Object o) {
29
		if (this == o) return true;
27
		if (this == o) return true;