rk
2025-12-16 2cfceadff437135a255990ab9698788a48adb636
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
package com.doumee.dao.web.response.goods;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.doumee.core.annotation.excel.ExcelColumn;
import com.doumee.dao.business.model.GoodsSkuAttr;
import com.doumee.dao.business.model.SkuAttr;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
import java.util.List;
 
/**
 * 商品SKU信息表
 * @author 江蹄蹄
 * @date 2023/03/21 15:48
 */
@Data
@ApiModel("商品SKU信息表响应类")
public class SkuResponse {
 
    @ApiModelProperty(value = "主键", example = "1")
    private Integer id;
 
    @ApiModelProperty(value = "名称")
    @ExcelColumn(name="名称")
    private String name;
 
    @ApiModelProperty(value = "是否咖啡计划周期 0否 1是", example = "1")
    @ExcelColumn(name="是否咖啡计划周期 0否 1是")
    private Integer isPlan;
 
    @ApiModelProperty(value="商品SKU规格值信息")
    private List<SkuAttrResponse> attrList;
 
    @ApiModelProperty(value="商品SKU规格值信息")
    private List<GoodsSkuAttrResponse> goodsSkuAttrList;
 
}