Subversion Repositories SmartDukaan

Rev

Rev 33795 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
31147 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.time.LocalDateTime;
4
 
5
public class CustomerOfferItemModel {
6
 
7
	private int catalogId;
8
	private int customerOfferId;
9
	private int schemePayout;
10
	private int dealerPayout;
11
	private LocalDateTime startDate;
12
	private LocalDateTime endDate;
13
	private int offerId;
14
 
15
	public int getOfferId() {
16
		return offerId;
17
	}
18
 
19
	public void setOfferId(int offerId) {
20
		this.offerId = offerId;
21
	}
22
 
23
	public int getCatalogId() {
24
		return catalogId;
25
	}
26
 
27
	public void setCatalogId(int catalogId) {
28
		this.catalogId = catalogId;
29
	}
30
 
31
	public int getCustomerOfferId() {
32
		return customerOfferId;
33
	}
34
 
35
	public void setCustomerOfferId(int customerOfferId) {
36
		this.customerOfferId = customerOfferId;
37
	}
38
 
39
	public int getSchemePayout() {
40
		return schemePayout;
41
	}
42
 
43
	public void setSchemePayout(int schemePayout) {
44
		this.schemePayout = schemePayout;
45
	}
46
 
47
	public int getDealerPayout() {
48
		return dealerPayout;
49
	}
50
 
51
	public void setDealerPayout(int dealerPayout) {
52
		this.dealerPayout = dealerPayout;
53
	}
54
 
55
	public LocalDateTime getStartDate() {
56
		return startDate;
57
	}
58
 
59
	public void setStartDate(LocalDateTime startDate) {
60
		this.startDate = startDate;
61
	}
62
 
63
	public LocalDateTime getEndDate() {
64
		return endDate;
65
	}
66
 
67
	public void setEndDate(LocalDateTime endDate) {
68
		this.endDate = endDate;
69
	}
70
 
71
	@Override
72
	public String toString() {
73
		return "CustomerOfferItemModel [catalogId=" + catalogId + ", customerOfferId=" + customerOfferId
74
				+ ", schemePayout=" + schemePayout + ", dealerPayout=" + dealerPayout + ", startDate=" + startDate
75
				+ ", endDate=" + endDate + ", offerId=" + offerId + "]";
76
	}
77
 
78
}