admin
2020-06-03 48919e675b01fba353b36e98df7ebbbf9ef4e984
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
package com.ks.tool.bkz.dto;
 
public class FirstOrderSubInfoDTO {
    private String activityPrice;
    private String brandLogo;
    private String brandName;
    private String entitySource;
    private String id;
    private String itemActPrice;
    private String itemDesc;
    private String itemId;
    private String itemImg;
    private String itemPrice;
    private String itemType;
    private String itemUrl;
    private String materials;
    private String monthSellNum;
    private String npcCnt;
    private String promotionAmount;
    private String promotionDisplayAmount;
    private String promotionPrice;
    private String promotionTag;
    private String promotionValue;
    private String remainStock;
    private String sellerUrl;
    private String shopTitle;
    private String shortTitle;
    private String title;
    private FirstOrderSubInfoRecommendTitleDTO recommendTitle;
 
 
    public String getActivityPrice() {
        return activityPrice;
    }
 
    public void setActivityPrice(String activityPrice) {
        this.activityPrice = activityPrice;
    }
 
    public String getBrandLogo() {
        return brandLogo;
    }
 
    public void setBrandLogo(String brandLogo) {
        this.brandLogo = brandLogo;
    }
 
    public String getBrandName() {
        return brandName;
    }
 
    public void setBrandName(String brandName) {
        this.brandName = brandName;
    }
 
    public String getEntitySource() {
        return entitySource;
    }
 
    public void setEntitySource(String entitySource) {
        this.entitySource = entitySource;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getItemActPrice() {
        return itemActPrice;
    }
 
    public void setItemActPrice(String itemActPrice) {
        this.itemActPrice = itemActPrice;
    }
 
    public String getItemDesc() {
        return itemDesc;
    }
 
    public void setItemDesc(String itemDesc) {
        this.itemDesc = itemDesc;
    }
 
    public String getItemId() {
        return itemId;
    }
 
    public void setItemId(String itemId) {
        this.itemId = itemId;
    }
 
    public String getItemImg() {
        return itemImg;
    }
 
    public void setItemImg(String itemImg) {
        this.itemImg = itemImg;
    }
 
    public String getItemPrice() {
        return itemPrice;
    }
 
    public void setItemPrice(String itemPrice) {
        this.itemPrice = itemPrice;
    }
 
    public String getItemType() {
        return itemType;
    }
 
    public void setItemType(String itemType) {
        this.itemType = itemType;
    }
 
    public String getItemUrl() {
        return itemUrl;
    }
 
    public void setItemUrl(String itemUrl) {
        this.itemUrl = itemUrl;
    }
 
    public String getMaterials() {
        return materials;
    }
 
    public void setMaterials(String materials) {
        this.materials = materials;
    }
 
    public String getMonthSellNum() {
        return monthSellNum;
    }
 
    public void setMonthSellNum(String monthSellNum) {
        this.monthSellNum = monthSellNum;
    }
 
    public String getNpcCnt() {
        return npcCnt;
    }
 
    public void setNpcCnt(String npcCnt) {
        this.npcCnt = npcCnt;
    }
 
    public String getPromotionAmount() {
        return promotionAmount;
    }
 
    public void setPromotionAmount(String promotionAmount) {
        this.promotionAmount = promotionAmount;
    }
 
    public String getPromotionDisplayAmount() {
        return promotionDisplayAmount;
    }
 
    public void setPromotionDisplayAmount(String promotionDisplayAmount) {
        this.promotionDisplayAmount = promotionDisplayAmount;
    }
 
    public String getPromotionPrice() {
        return promotionPrice;
    }
 
    public void setPromotionPrice(String promotionPrice) {
        this.promotionPrice = promotionPrice;
    }
 
    public String getPromotionTag() {
        return promotionTag;
    }
 
    public void setPromotionTag(String promotionTag) {
        this.promotionTag = promotionTag;
    }
 
    public String getPromotionValue() {
        return promotionValue;
    }
 
    public void setPromotionValue(String promotionValue) {
        this.promotionValue = promotionValue;
    }
 
    public String getRemainStock() {
        return remainStock;
    }
 
    public void setRemainStock(String remainStock) {
        this.remainStock = remainStock;
    }
 
    public String getSellerUrl() {
        return sellerUrl;
    }
 
    public void setSellerUrl(String sellerUrl) {
        this.sellerUrl = sellerUrl;
    }
 
    public String getShopTitle() {
        return shopTitle;
    }
 
    public void setShopTitle(String shopTitle) {
        this.shopTitle = shopTitle;
    }
 
    public String getShortTitle() {
        return shortTitle;
    }
 
    public void setShortTitle(String shortTitle) {
        this.shortTitle = shortTitle;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public FirstOrderSubInfoRecommendTitleDTO getRecommendTitle() {
        return recommendTitle;
    }
 
    public void setRecommendTitle(FirstOrderSubInfoRecommendTitleDTO recommendTitle) {
        this.recommendTitle = recommendTitle;
    }
 
 
}