shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
package com.ishop.model.vo;
 
import com.ishop.model.po.EbProductAttr;
import com.ishop.model.po.EbProductAttrValue;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * 后台商品详情展示。
 * @date 2023-06-20
 */
public class ProductInfoVo implements Serializable {
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getImage() {
        return image;
    }
 
    public void setImage(String image) {
        this.image = image;
    }
 
    public String getSliderImage() {
        return sliderImage;
    }
 
    public void setSliderImage(String sliderImage) {
        this.sliderImage = sliderImage;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getIntro() {
        return intro;
    }
 
    public void setIntro(String intro) {
        this.intro = intro;
    }
 
    public String getKeyword() {
        return keyword;
    }
 
    public void setKeyword(String keyword) {
        this.keyword = keyword;
    }
 
    public String getCateId() {
        return cateId;
    }
 
    public void setCateId(String cateId) {
        this.cateId = cateId;
    }
 
    public Integer getBrandId() {
        return brandId;
    }
 
    public void setBrandId(Integer brandId) {
        this.brandId = brandId;
    }
 
    public Integer getCategoryId() {
        return categoryId;
    }
 
    public void setCategoryId(Integer categoryId) {
        this.categoryId = categoryId;
    }
 
    public String getGuaranteeIds() {
        return guaranteeIds;
    }
 
    public void setGuaranteeIds(String guaranteeIds) {
        this.guaranteeIds = guaranteeIds;
    }
 
    public String getUnitName() {
        return unitName;
    }
 
    public void setUnitName(String unitName) {
        this.unitName = unitName;
    }
 
    public Integer getSort() {
        return sort;
    }
 
    public void setSort(Integer sort) {
        this.sort = sort;
    }
 
    public Integer getGiveIntegral() {
        return giveIntegral;
    }
 
    public void setGiveIntegral(Integer giveIntegral) {
        this.giveIntegral = giveIntegral;
    }
 
    public Integer getFicti() {
        return ficti;
    }
 
    public void setFicti(Integer ficti) {
        this.ficti = ficti;
    }
 
    public Boolean getSpecType() {
        return specType;
    }
 
    public void setSpecType(Boolean specType) {
        this.specType = specType;
    }
 
    public List<EbProductAttr> getAttr() {
        return attr;
    }
 
    public void setAttr(List<EbProductAttr> attr) {
        this.attr = attr;
    }
 
    public List<EbProductAttrValue> getAttrValue() {
        return attrValue;
    }
 
    public void setAttrValue(List<EbProductAttrValue> attrValue) {
        this.attrValue = attrValue;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public List<Integer> getCouponIds() {
        return couponIds;
    }
 
    public void setCouponIds(List<Integer> couponIds) {
        this.couponIds = couponIds;
    }
 
    public List<CouponVo> getCouponList() {
        return couponList;
    }
 
    public void setCouponList(List<CouponVo> couponList) {
        this.couponList = couponList;
    }
 
    public String getFlatPattern() {
        return flatPattern;
    }
 
    public void setFlatPattern(String flatPattern) {
        this.flatPattern = flatPattern;
    }
 
    public Integer getTempId() {
        return tempId;
    }
 
    public void setTempId(Integer tempId) {
        this.tempId = tempId;
    }
 
    public Boolean getSub() {
        return isSub;
    }
 
    public void setSub(Boolean sub) {
        isSub = sub;
    }
 
    //    @ApiModelProperty(value = "商品id")
    private Long id;
 
//    @ApiModelProperty(value = "商品图片")
    private String image;
 
//    @ApiModelProperty(value = "轮播图")
    private String sliderImage;
 
//    @ApiModelProperty(value = "商品名称")
    private String name;
 
//    @ApiModelProperty(value = "商品简介")
    private String intro;
 
//    @ApiModelProperty(value = "关键字")
    private String keyword;
 
//    @ApiModelProperty(value = "商户分类id(逗号拼接)")
    private String cateId;
 
//    @ApiModelProperty(value = "品牌id")
    private Integer brandId;
 
//    @ApiModelProperty(value = "平台分类id")
    private Integer categoryId;
 
//    @ApiModelProperty(value = "保障服务ids(英文逗号拼接)")
    private String guaranteeIds;
 
//    @ApiModelProperty(value = "单位名")
    private String unitName;
 
//    @ApiModelProperty(value = "排序")
    private Integer sort;
 
//    @ApiModelProperty(value = "获得积分")
    private Integer giveIntegral;
 
//    @ApiModelProperty(value = "虚拟销量")
    private Integer ficti;
 
//    @ApiModelProperty(value = "规格 0单 1多")
    private Boolean specType;
 
//    @ApiModelProperty(value = "商品属性")
    private List<EbProductAttr> attr;
 
//    @ApiModelProperty(value = "商品属性详情")
//private List<AttrValueResponse> attrValue;
    private List<EbProductAttrValue> attrValue;
 
//    @ApiModelProperty(value = "商品描述")
    private String content;
 
//    @ApiModelProperty(value = "优惠券Ids(商户端)")
    private List<Integer> couponIds;
 
//    @ApiModelProperty(value = "优惠券列表(平台端)")
    private List<CouponVo> couponList;
 
//    @ApiModelProperty(value = "展示图")
    private String flatPattern;
 
//    @ApiModelProperty(value = "运费模板ID")
    private Integer tempId;
 
//    @ApiModelProperty(value = "是否单独分佣")
    private Boolean isSub;
}