zxl
5 天以前 8063ee7eee51bfe25a09428e6efc60f828b270c6
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
package cn.lili.modules.goods.entity.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 商品参数项
 *
 * @author Chopper
 * @version v1.0
 * 2021-06-24 15:41
 */
@Data
@ApiModel(value = "商品参数列表")
public class GoodsParamsItemDTO implements Serializable {
 
    private static final long serialVersionUID = -8823775607604091035L;
 
    @ApiModelProperty(value = "参数ID")
    private String paramId;
 
    @ApiModelProperty(value = "参数名字")
    private String paramName;
 
    @ApiModelProperty(value = "参数值")
    private String paramValue;
 
    @ApiModelProperty(value = "是否可索引,0 不索引 1 索引")
    private Integer isIndex = 0;
 
    @ApiModelProperty(value = "是否必填,0 不显示 1 显示")
    private Integer required = 0;
 
    @ApiModelProperty(value = "排序")
    private Integer sort;
}