Subversion Repositories SmartDukaan

Rev

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

Rev 33795 Rev 34516
Line 7... Line 7...
7
public class CustomerOfferItemModel {
7
public class CustomerOfferItemModel {
8
 
8
 
9
	private int catalogId;
9
	private int catalogId;
10
	private int customerOfferId;
10
	private int customerOfferId;
11
	private int schemePayout;
11
	private int schemePayout;
-
 
12
    private String additionalInfo;
12
	private int dealerPayout;
13
	private int dealerPayout;
13
    private OfferType offerType;
14
    private OfferType offerType;
14
	private LocalDateTime startDate;
15
	private LocalDateTime startDate;
15
	private LocalDateTime endDate;
16
	private LocalDateTime endDate;
16
	private int offerId;
17
	private int offerId;
Line 77... Line 78...
77
 
78
 
78
    public void setOfferType(OfferType offerType) {
79
    public void setOfferType(OfferType offerType) {
79
        this.offerType = offerType;
80
        this.offerType = offerType;
80
    }
81
    }
81
 
82
 
-
 
83
    public String getAdditionalInfo() {
-
 
84
        return additionalInfo;
-
 
85
    }
-
 
86
 
-
 
87
    public void setAdditionalInfo(String additionalInfo) {
-
 
88
        this.additionalInfo = additionalInfo;
-
 
89
    }
-
 
90
 
82
	@Override
91
	@Override
83
	public String toString() {
92
	public String toString() {
84
        return "CustomerOfferItemModel{" +
93
        return "CustomerOfferItemModel{" +
85
                "catalogId=" + catalogId +
94
                "catalogId=" + catalogId +
86
                ", customerOfferId=" + customerOfferId +
95
                ", customerOfferId=" + customerOfferId +
87
                ", schemePayout=" + schemePayout +
96
                ", schemePayout=" + schemePayout +
-
 
97
                ", additionalInfo='" + additionalInfo + '\'' +
88
                ", dealerPayout=" + dealerPayout +
98
                ", dealerPayout=" + dealerPayout +
89
                ", offerType=" + offerType +
99
                ", offerType=" + offerType +
90
                ", startDate=" + startDate +
100
                ", startDate=" + startDate +
91
                ", endDate=" + endDate +
101
                ", endDate=" + endDate +
92
                ", offerId=" + offerId +
102
                ", offerId=" + offerId +