jiaosong
2023-09-08 cbf7bd4c7d62670b26292d4738cc062bf965591c
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
package com.doumee.dao.business.model.dto;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/6/7 15:09
 */
@Data
public class BaseCategoryRequest {
 
    @ApiModelProperty(value = "主键")
    private Integer id;
 
    @ApiModelProperty(value = "名称(不可重复)")
    private String name;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "属性1名称")
    private String attrFirst;
 
    @ApiModelProperty(value = "属性2名称")
    private String attrSecond;
 
    @ApiModelProperty(value = "状态 0启用 1禁用", example = "1")
    private Integer status;
 
    @ApiModelProperty(value = "排序码", example = "1")
    private Integer sortnum;
 
    @ApiModelProperty(value = "图标")
    private String imgurl;
 
    @ApiModelProperty(value = "名称拼音")
    private String pinyin;
 
    @ApiModelProperty(value = "名称拼音首字母")
    private String shortPinyin;
 
    @ApiModelProperty(value = "参数属性配置")
    List<BaseCategoryRequestParam> baseCategoryRequestParamList;
 
}