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;
|
|
}
|