jiangping
2023-09-18 69c65dda53f5fa7007130e6a7339666b5b5ef52a
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
package com.doumee.dao.business.model.dto;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
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 = "状态 0启用 1禁用")
    private Integer status;
 
    @ApiModelProperty(value = "排序码")
    private Integer sortnum;
 
    @ApiModelProperty(value = "图标")
    private String imgurl;
 
 
    @ApiModelProperty(value = "加价系数",example = "0")
    private BigDecimal priceRate;
 
    @ApiModelProperty(value = "参数属性配置")
    List<BaseCategoryRequestParam> baseCateParamList;
 
}