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