rk
2025-12-15 12d724c247e4f7dcb77b3a94891ccf4d86b53cfa
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
package com.doumee.dao.web.response.goods;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 商品SKU规格组明细表
 * @author 江蹄蹄
 * @date 2023/03/21 15:48
 */
@Data
@ApiModel("商品SKU规格组明细表响应类")
public class GoodsSkuAttrResponse {
 
    @ApiModelProperty(value = "主键", example = "1")
    @ExcelColumn(name="主键")
    private Integer id;
 
    @ApiModelProperty(value = "商品sku编码(关联goods_sku表)", example = "1")
    @ExcelColumn(name="商品sku编码(关联goods_sku表)")
    private Integer goodsSkuId;
 
    @ApiModelProperty(value = "sku编码(关联sku表)", example = "1")
    @ExcelColumn(name="sku编码(关联sku表)")
    private Integer skuId;
 
    @ApiModelProperty(value = "sku规格编码(关联sku_attr表)", example = "1")
    @ExcelColumn(name="sku规格编码(关联sku_attr表)")
    private Integer skuAttrId;
 
}