Subversion Repositories SmartDukaan

Rev

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

Rev 33791 Rev 33801
Line 6... Line 6...
6
	private int authUserId;
6
	private int authUserId;
7
	private String brand;
7
	private String brand;
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
 
12
 
12
	public BrandAuthUserPOModel() {
13
	public BrandAuthUserPOModel() {
13
	}
14
	}
14
 
15
 
15
	public BrandAuthUserPOModel(int authUserId, String brand, long todayPOValue, long todayPOBilledValue, long todayBilledValue) {
16
	public BrandAuthUserPOModel(int authUserId, String brand, long todayPOValue, long todayPOBilledValue, long todayBilledValue, int partiesBilled) {
16
		this.authUserId = authUserId;
17
		this.authUserId = authUserId;
17
		this.brand = brand;
18
		this.brand = brand;
18
		this.todayPOValue = todayPOValue;
19
		this.todayPOValue = todayPOValue;
19
		this.todayPOBilledValue = todayPOBilledValue;
20
		this.todayPOBilledValue = todayPOBilledValue;
20
		this.todayBilledValue = todayBilledValue;
21
		this.todayBilledValue = todayBilledValue;
-
 
22
		this.partiesBilled = partiesBilled;
21
	}
23
	}
22
 
24
 
23
	@Override
25
	@Override
24
	public boolean equals(Object o) {
26
	public boolean equals(Object o) {
25
		if (this == o) return true;
27
		if (this == o) return true;
Line 70... Line 72...
70
	}
72
	}
71
 
73
 
72
	public void setTodayBilledValue(long todayBilledValue) {
74
	public void setTodayBilledValue(long todayBilledValue) {
73
		this.todayBilledValue = todayBilledValue;
75
		this.todayBilledValue = todayBilledValue;
74
	}
76
	}
-
 
77
 
-
 
78
	public int getPartiesBilled() {
-
 
79
		return partiesBilled;
-
 
80
	}
-
 
81
 
-
 
82
	public void setPartiesBilled(int partiesBilled) {
-
 
83
		this.partiesBilled = partiesBilled;
-
 
84
	}
75
}
85
}