Subversion Repositories SmartDukaan

Rev

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

Rev 26675 Rev 26694
Line 1... Line 1...
1
package com.spice.profitmandi.dao.model;
1
package com.spice.profitmandi.dao.model;
2
 
2
 
-
 
3
import java.time.LocalDate;
3
import java.time.LocalDateTime;
4
import java.time.LocalDateTime;
4
import java.util.List;
5
import java.util.List;
5
 
6
 
6
import com.spice.profitmandi.dao.entity.fofo.PartnerType;
7
import com.spice.profitmandi.dao.entity.fofo.PartnerType;
7
import com.spice.profitmandi.dao.enumuration.catalog.ItemCriteriaType;
8
import com.spice.profitmandi.dao.enumuration.catalog.ItemCriteriaType;
Line 23... Line 24...
23
	private LocalDateTime endDate;
24
	private LocalDateTime endDate;
24
	private int price;
25
	private int price;
25
	private double totalSale;
26
	private double totalSale;
26
	private double shortAmount;
27
	private double shortAmount;
27
	private double margin;
28
	private double margin;
-
 
29
	private int value;
-
 
30
	private String schemeType;
-
 
31
	private LocalDate startDateTime;
-
 
32
	private LocalDate endDateTime;
-
 
33
 
-
 
34
	public LocalDate getStartDateTime() {
-
 
35
		return startDateTime;
-
 
36
	}
-
 
37
 
-
 
38
	public void setStartDateTime(LocalDate startDateTime) {
-
 
39
		this.startDateTime = startDateTime;
-
 
40
	}
-
 
41
 
-
 
42
	public LocalDate getEndDateTime() {
-
 
43
		return endDateTime;
-
 
44
	}
-
 
45
 
-
 
46
	public void setEndDateTime(LocalDate endDateTime) {
-
 
47
		this.endDateTime = endDateTime;
-
 
48
	}
-
 
49
 
-
 
50
	public int getValue() {
-
 
51
		return value;
-
 
52
	}
-
 
53
 
-
 
54
	public void setValue(int value) {
-
 
55
		this.value = value;
-
 
56
	}
-
 
57
 
-
 
58
	public String getSchemeType() {
-
 
59
		return schemeType;
-
 
60
	}
-
 
61
 
-
 
62
	public void setSchemeType(String schemeType) {
-
 
63
		this.schemeType = schemeType;
-
 
64
	}
28
 
65
 
29
	public String getCriteria() {
66
	public String getCriteria() {
30
		return criteria;
67
		return criteria;
31
	}
68
	}
32
 
69