Subversion Repositories SmartDukaan

Rev

Rev 31147 | Go to most recent revision | 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;
12
	private int dealerPayout;
33795 ranu 13
    private OfferType offerType;
31147 tejbeer 14
	private LocalDateTime startDate;
15
	private LocalDateTime endDate;
16
	private int offerId;
17
 
18
	public int getOfferId() {
19
		return offerId;
20
	}
21
 
22
	public void setOfferId(int offerId) {
23
		this.offerId = offerId;
24
	}
25
 
26
	public int getCatalogId() {
27
		return catalogId;
28
	}
29
 
30
	public void setCatalogId(int catalogId) {
31
		this.catalogId = catalogId;
32
	}
33
 
34
	public int getCustomerOfferId() {
35
		return customerOfferId;
36
	}
37
 
38
	public void setCustomerOfferId(int customerOfferId) {
39
		this.customerOfferId = customerOfferId;
40
	}
41
 
42
	public int getSchemePayout() {
43
		return schemePayout;
44
	}
45
 
46
	public void setSchemePayout(int schemePayout) {
47
		this.schemePayout = schemePayout;
48
	}
49
 
50
	public int getDealerPayout() {
51
		return dealerPayout;
52
	}
53
 
54
	public void setDealerPayout(int dealerPayout) {
55
		this.dealerPayout = dealerPayout;
56
	}
57
 
58
	public LocalDateTime getStartDate() {
59
		return startDate;
60
	}
61
 
62
	public void setStartDate(LocalDateTime startDate) {
63
		this.startDate = startDate;
64
	}
65
 
66
	public LocalDateTime getEndDate() {
67
		return endDate;
68
	}
69
 
70
	public void setEndDate(LocalDateTime endDate) {
71
		this.endDate = endDate;
72
	}
73
 
33795 ranu 74
    public OfferType getOfferType() {
75
        return offerType;
76
    }
77
 
78
    public void setOfferType(OfferType offerType) {
79
        this.offerType = offerType;
80
    }
81
 
31147 tejbeer 82
	@Override
83
	public String toString() {
33795 ranu 84
        return "CustomerOfferItemModel{" +
85
                "catalogId=" + catalogId +
86
                ", customerOfferId=" + customerOfferId +
87
                ", schemePayout=" + schemePayout +
88
                ", dealerPayout=" + dealerPayout +
89
                ", offerType=" + offerType +
90
                ", startDate=" + startDate +
91
                ", endDate=" + endDate +
92
                ", offerId=" + offerId +
93
                '}';
31147 tejbeer 94
	}
95
}