|  |  |  | 
|---|
|  |  |  | 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; | 
|---|
|  |  |  | 
|---|
|  |  |  | @TableName("`category`") | 
|---|
|  |  |  | public class Category { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableId(type = IdType.AUTO) | 
|---|
|  |  |  | @ApiModelProperty(value = "主键", example = "1") | 
|---|
|  |  |  | @ExcelColumn(name="主键") | 
|---|
|  |  |  | private Integer id; | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "类型:0=品种配置;1=车辆类型配置;2=餐标配置;3=手续费配置;", example = "1") | 
|---|
|  |  |  | @ExcelColumn(name="类型:0=品种配置;1=车辆类型配置;2=餐标配置;3=手续费配置;") | 
|---|
|  |  |  | private Byte type; | 
|---|
|  |  |  | private Integer type; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "内容(车辆规格、餐标、手续费比例)") | 
|---|
|  |  |  | @ExcelColumn(name="内容(车辆规格、餐标、手续费比例)") | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "餐标等配置项集合", example = "1") | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private JSONArray detailList; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "图标全路径") | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String iconFull; | 
|---|
|  |  |  | } | 
|---|