rk
19 小时以前 bd6229ebd9cb543a22944ecb1142fad92b675dce
server/services/src/main/java/com/doumee/dao/business/model/Category.java
@@ -3,6 +3,7 @@
import com.alibaba.fastjson.JSONArray;
import com.baomidou.mybatisplus.annotation.TableField;
import com.doumee.core.annotation.excel.ExcelColumn;
import com.doumee.core.model.LoginUserInfo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
@@ -23,6 +24,7 @@
@TableName("`category`")
public class Category {
    @TableId(type = IdType.AUTO)
    @ApiModelProperty(value = "主键", example = "1")
    @ExcelColumn(name="主键")
    private Integer id;
@@ -63,7 +65,7 @@
    @ApiModelProperty(value = "类型:0=品种配置;1=车辆类型配置;2=餐标配置;3=手续费配置;", example = "1")
    @ExcelColumn(name="类型:0=品种配置;1=车辆类型配置;2=餐标配置;3=手续费配置;")
    private Byte type;
    private Integer type;
    @ApiModelProperty(value = "内容(车辆规格、餐标、手续费比例)")
    @ExcelColumn(name="内容(车辆规格、餐标、手续费比例)")
@@ -85,5 +87,7 @@
    @ApiModelProperty(value = "餐标等配置项集合", example = "1")
    @TableField(exist = false)
    private JSONArray detailList;
    @ApiModelProperty(value = "图标全路径")
    @TableField(exist = false)
    private String iconFull;
}