Subversion Repositories SmartDukaan

Rev

Rev 30122 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30122 Rev 36396
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
-
 
3
import java.time.LocalDateTime;
3
import java.util.List;
4
import java.util.List;
4
 
5
 
5
public class SchemeItems {
6
public class SchemeItems {
6
	private List<Integer> schemeIds;
7
	private List<Integer> schemeIds;
7
	private List<Integer> catalogIds;
8
	private List<Integer> catalogIds;
-
 
9
	private LocalDateTime startDate;
-
 
10
	private LocalDateTime endDate;
8
 
11
 
9
 
12
 
10
	public List<Integer> getSchemeIds() {
13
	public List<Integer> getSchemeIds() {
11
		return schemeIds;
14
		return schemeIds;
12
	}
15
	}
Line 21... Line 24...
21
 
24
 
22
	public void setCatalogIds(List<Integer> catalogIds) {
25
	public void setCatalogIds(List<Integer> catalogIds) {
23
		this.catalogIds = catalogIds;
26
		this.catalogIds = catalogIds;
24
	}
27
	}
25
 
28
 
-
 
29
	public LocalDateTime getStartDate() {
-
 
30
		return startDate;
-
 
31
	}
-
 
32
 
-
 
33
	public void setStartDate(LocalDateTime startDate) {
-
 
34
		this.startDate = startDate;
-
 
35
	}
-
 
36
 
-
 
37
	public LocalDateTime getEndDate() {
-
 
38
		return endDate;
-
 
39
	}
-
 
40
 
-
 
41
	public void setEndDate(LocalDateTime endDate) {
-
 
42
		this.endDate = endDate;
-
 
43
	}
-
 
44
 
26
	@Override
45
	@Override
27
	public String toString() {
46
	public String toString() {
28
		return "SchemeItems [schemeIds=" + schemeIds + ", itemIds=" + catalogIds + "]";
47
		return "SchemeItems [schemeIds=" + schemeIds + ", itemIds=" + catalogIds + "]";
29
	}
48
	}
30
 
49