| | |
| | | package com.doumee.dao.business.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import com.doumee.core.model.LoginUserModel; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 分类信息表 |
| | |
| | | @ExcelColumn(name="图标") |
| | | private String imgurl; |
| | | |
| | | @ApiModelProperty(value = "类型 0公司类型") |
| | | @ExcelColumn(name="类型 0公司类型") |
| | | @ApiModelProperty(value = "类型 0公司类型 1车辆类型") |
| | | @ExcelColumn(name="类型 0公司类型 1车辆类型") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "父级编码(自关联)") |
| | | @ExcelColumn(name="父级编码(自关联)") |
| | | private Integer parentId; |
| | | |
| | | @ApiModelProperty(value = "子集分类") |
| | | @TableField(exist = false) |
| | | private List<Category> childCategoryList; |
| | | |
| | | |
| | | } |