Subversion Repositories SmartDukaan

Rev

Rev 33795 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
31147 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
33795 ranu 3
import com.spice.profitmandi.common.enumuration.OfferType;
4
 
31147 tejbeer 5
import java.time.LocalDateTime;
6
 
7
public class CustomerOfferItemModel {
8
 
9
	private int catalogId;
10
	private int customerOfferId;
11
	private int schemePayout;
34516 ranu 12
    private String additionalInfo;
31147 tejbeer 13
	private int dealerPayout;
33795 ranu 14
    private OfferType offerType;
31147 tejbeer 15
	private LocalDateTime startDate;
16
	private LocalDateTime endDate;
17
	private int offerId;
18
 
19
	public int getOfferId() {
20
		return offerId;
21
	}
22
 
23
	public void setOfferId(int offerId) {
24
		this.offerId = offerId;
25
	}
26
 
27
	public int getCatalogId() {
28
		return catalogId;
29
	}
30
 
31
	public void setCatalogId(int catalogId) {
32
		this.catalogId = catalogId;
33
	}
34
 
35
	public int getCustomerOfferId() {
36
		return customerOfferId;
37
	}
38
 
39
	public void setCustomerOfferId(int customerOfferId) {
40
		this.customerOfferId = customerOfferId;
41
	}
42
 
43
	public int getSchemePayout() {
44
		return schemePayout;
45
	}
46
 
47
	public void setSchemePayout(int schemePayout) {
48
		this.schemePayout = schemePayout;
49
	}
50
 
51
	public int getDealerPayout() {
52
		return dealerPayout;
53
	}
54
 
55
	public void setDealerPayout(int dealerPayout) {
56
		this.dealerPayout = dealerPayout;
57
	}
58
 
59
	public LocalDateTime getStartDate() {
60
		return startDate;
61
	}
62
 
63
	public void setStartDate(LocalDateTime startDate) {
64
		this.startDate = startDate;
65
	}
66
 
67
	public LocalDateTime getEndDate() {
68
		return endDate;
69
	}
70
 
71
	public void setEndDate(LocalDateTime endDate) {
72
		this.endDate = endDate;
73
	}
74
 
33795 ranu 75
    public OfferType getOfferType() {
76
        return offerType;
77
    }
78
 
79
    public void setOfferType(OfferType offerType) {
80
        this.offerType = offerType;
81
    }
82
 
34516 ranu 83
    public String getAdditionalInfo() {
84
        return additionalInfo;
85
    }
86
 
87
    public void setAdditionalInfo(String additionalInfo) {
88
        this.additionalInfo = additionalInfo;
89
    }
90
 
31147 tejbeer 91
	@Override
92
	public String toString() {
33795 ranu 93
        return "CustomerOfferItemModel{" +
94
                "catalogId=" + catalogId +
95
                ", customerOfferId=" + customerOfferId +
96
                ", schemePayout=" + schemePayout +
34516 ranu 97
                ", additionalInfo='" + additionalInfo + '\'' +
33795 ranu 98
                ", dealerPayout=" + dealerPayout +
99
                ", offerType=" + offerType +
100
                ", startDate=" + startDate +
101
                ", endDate=" + endDate +
102
                ", offerId=" + offerId +
103
                '}';
31147 tejbeer 104
	}
105
}