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
| package cn.iocoder.yudao.module.mes.controller.admin.md.item.vo.type;
|
| import cn.idev.excel.annotation.ExcelProperty;
| import lombok.Data;
|
| /**
| * MES 物料产品分类导出 Excel VO
| *
| * @author 超级管理员
| */
| @Data
| public class MesMdItemTypeExcelVO {
|
| @ExcelProperty("分类编码")
| private String code;
|
| @ExcelProperty("分类名称")
| private String name;
|
| @ExcelProperty("上级分类编码")
| private String parentCode;
|
| @ExcelProperty("上级分类名称")
| private String parentName;
|
| @ExcelProperty("物料/产品")
| private String itemOrProduct;
|
| @ExcelProperty("排序")
| private Integer sort;
|
| @ExcelProperty("状态")
| private Integer status;
|
| @ExcelProperty("备注")
| private String remark;
|
| }
|
|