Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
26588 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.time.LocalDateTime;
4
import java.util.List;
5
 
6
import com.spice.profitmandi.dao.enumuration.catalog.ItemCriteriaType;
7
 
8
public class CreateOfferRequest {
9
 
10
	private String name;
11
	private String description;
12
	private ItemCriteriaType itemCriteria;
13
	private List<AmountMarginModel> amountOffer;
14
	private List<Integer> fofoIds;
15
	private List<Integer> catalogIds;
16
	private List<String> brands;
17
	private String amountType;
18
	private String targetType;
19
	private LocalDateTime startDate;
20
	private LocalDateTime endDate;
21
	private int price;
22
	private double totalSale;
23
	private double shortAmount;
24
	private int margin;
25
 
26
	public double getShortAmount() {
27
		return shortAmount;
28
	}
29
 
30
	public void setShortAmount(double shortAmount) {
31
		this.shortAmount = shortAmount;
32
	}
33
 
34
	public double getTotalSale() {
35
		return totalSale;
36
	}
37
 
38
	public void setTotalSale(double totalSale) {
39
		this.totalSale = totalSale;
40
	}
41
 
42
	public int getMargin() {
43
		return margin;
44
	}
45
 
46
	public void setMargin(int margin) {
47
		this.margin = margin;
48
	}
49
 
50
	public int getPrice() {
51
		return price;
52
	}
53
 
54
	public void setPrice(int price) {
55
		this.price = price;
56
	}
57
 
58
	public List<Integer> getCatalogIds() {
59
		return catalogIds;
60
	}
61
 
62
	public void setCatalogIds(List<Integer> catalogIds) {
63
		this.catalogIds = catalogIds;
64
	}
65
 
66
	public String getName() {
67
		return name;
68
	}
69
 
70
	public void setName(String name) {
71
		this.name = name;
72
	}
73
 
74
	public String getDescription() {
75
		return description;
76
	}
77
 
78
	public void setDescription(String description) {
79
		this.description = description;
80
	}
81
 
82
	public ItemCriteriaType getItemCriteria() {
83
		return itemCriteria;
84
	}
85
 
86
	public void setItemCreteria(ItemCriteriaType itemCreteria) {
87
		this.itemCriteria = itemCreteria;
88
	}
89
 
90
	public List<AmountMarginModel> getAmountOffer() {
91
		return amountOffer;
92
	}
93
 
94
	public void setAmountOffer(List<AmountMarginModel> amountOffer) {
95
		this.amountOffer = amountOffer;
96
	}
97
 
98
	public List<Integer> getFofoIds() {
99
		return fofoIds;
100
	}
101
 
102
	public void setFofoIds(List<Integer> fofoIds) {
103
		this.fofoIds = fofoIds;
104
	}
105
 
106
	public List<String> getBrands() {
107
		return brands;
108
	}
109
 
110
	public void setBrands(List<String> brands) {
111
		this.brands = brands;
112
	}
113
 
114
	public String getAmountType() {
115
		return amountType;
116
	}
117
 
118
	public void setAmountType(String amountType) {
119
		this.amountType = amountType;
120
	}
121
 
122
	public String getTargetType() {
123
		return targetType;
124
	}
125
 
126
	public void setTargetType(String targetType) {
127
		this.targetType = targetType;
128
	}
129
 
130
	public LocalDateTime getStartDate() {
131
		return startDate;
132
	}
133
 
134
	public void setStartDate(LocalDateTime startDate) {
135
		this.startDate = startDate;
136
	}
137
 
138
	public LocalDateTime getEndDate() {
139
		return endDate;
140
	}
141
 
142
	public void setEndDate(LocalDateTime endDate) {
143
		this.endDate = endDate;
144
	}
145
 
146
}