| package doumeemes.dao.ext.vo; | 
|   | 
| import doumeemes.dao.business.model.*; | 
| import doumeemes.core.annotation.excel.ExcelColumn; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import java.util.Date; | 
|   | 
| import java.io.Serializable; | 
| import java.util.List; | 
|   | 
| /** | 
|  * @author 江蹄蹄 | 
|  * @date 2022/04/20 10:59 | 
|  */ | 
| @Data | 
| @ApiModel("物料分配信息列表对象") | 
| public class MaterialDistributeExtListVO implements Serializable{ | 
|   | 
|     @ApiModelProperty(value = "主键", example = "1") | 
|     @ExcelColumn(name="主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "是否已删除 0未删除 1已删除", example = "1",hidden = true) | 
|     @ExcelColumn(name="是否已删除 0未删除 1已删除") | 
|     private Integer deleted; | 
|   | 
|     @ApiModelProperty(value = "创建人编码", example = "1",hidden = true) | 
|     @ExcelColumn(name="创建人编码") | 
|     private Integer createUser; | 
|   | 
|     @ApiModelProperty(value = "创建时间") | 
|     @ExcelColumn(name="创建时间") | 
|    // @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date createTime; | 
|   | 
|     @ApiModelProperty(value = "更新人编码", example = "1",hidden = true) | 
|     @ExcelColumn(name="更新人编码") | 
|     private Integer updateUser; | 
|   | 
|     @ApiModelProperty(value = "更新时间",hidden = true) | 
|     @ExcelColumn(name="更新时间") | 
|    // @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date updateTime; | 
|   | 
|     @ApiModelProperty(value = "备注",hidden = true) | 
|     @ExcelColumn(name="备注") | 
|     private String remark; | 
|   | 
|     @ApiModelProperty(value = "主组织编码(关联department表根组织)", example = "1",hidden = true) | 
|     @ExcelColumn(name="主组织编码(关联department表根组织)") | 
|     private Integer rootDepartId; | 
|   | 
|     @ApiModelProperty(value = "公司级组织编码 (关联department表组织)", example = "1",hidden = true) | 
|     @ExcelColumn(name="公司级组织编码 (关联department表组织)") | 
|     private Integer departId; | 
|   | 
|     @ApiModelProperty(value = "物料编码") | 
|     @ExcelColumn(name="物料编码") | 
|     private String materialId; | 
|   | 
|     @ApiModelProperty(value = "规格型号") | 
|     @ExcelColumn(name="规格型号") | 
|     private String attr; | 
|   | 
|     @ApiModelProperty(value = "组合名称,(物料名称+物料规格型号,自动显示不可人工修改)") | 
|     @ExcelColumn(name="组合名称,(物料名称+物料规格型号,自动显示不可人工修改)") | 
|     private String unionName; | 
|   | 
|     @ApiModelProperty(value = "主单位编码,(关联unit_distribute表)", example = "1",hidden = true) | 
|     @ExcelColumn(name="主单位编码,(关联unit_distribute表)") | 
|     private Integer unitId; | 
|   | 
|     @ApiModelProperty(value = "物料分类组合编码(关联category_union表)", example = "1") | 
|     @ExcelColumn(name="物料分类组合编码(关联category_union表)") | 
|     private Integer cateUnionId; | 
|   | 
|     @ApiModelProperty(value = "形成方式 0生产、1.采购", example = "1") | 
|     @ExcelColumn(name="形成方式 0生产、1.采购") | 
|     private Integer formation; | 
|   | 
|     @ApiModelProperty(value = "状态0.无效 1.有效", example = "1") | 
|     @ExcelColumn(name="状态0.无效 1.有效") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "最后启用时间",hidden = true) | 
|     @ExcelColumn(name="最后启用时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date validTime; | 
|   | 
|     @ApiModelProperty(value = "最后失效时间",hidden = true) | 
|     @ExcelColumn(name="最后失效时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date invalidTime; | 
|   | 
|     @ApiModelProperty(value = "系统-组织信息表信息",hidden = true) | 
|     private Department dmodel; | 
|   | 
|     @ApiModelProperty(value = "物料基本信息表信息",hidden = true) | 
|     private Material mmodel; | 
|   | 
|     @ApiModelProperty(value = "物料单位信息表信息",hidden = true) | 
|     private Unit umodel; | 
|   | 
|     @ApiModelProperty(value = "物料分类组合信息表信息",hidden = true) | 
|     private CategoryUnion cmodel; | 
|   | 
|     private String dmodelName;//组织名称 | 
|   | 
|     @ApiModelProperty(value = "物料分类名称") | 
|     private String unionCategoryName; | 
|   | 
|     @ApiModelProperty(value = "物料组合名称") | 
|     private String mmodelUnionName; | 
|     @ApiModelProperty(value = "物料编码") | 
|     private String mmodelCode; | 
|     @ApiModelProperty(value = "单位名称") | 
|     private String umodelName; | 
|     @ApiModelProperty(value = "属性0整数 1小数(支持四位小数)") | 
|     private Integer umodelAttributeData; | 
|   | 
|     @ApiModelProperty(value = "分类大类名称") | 
|     private String cmodelName; | 
|     @ApiModelProperty(value = "分类中类名称") | 
|     private String cmodel1Name; | 
|     @ApiModelProperty(value = "分类小类名称") | 
|     private String cmodel2Name; | 
|   | 
|   | 
|     @ApiModelProperty(value = "分类大类id") | 
|     private Integer cmodelId; | 
|   | 
|     @ApiModelProperty(value = "分类中类id") | 
|     private Integer cmodel2Id; | 
|   | 
|     @ApiModelProperty(value = "分类小类id") | 
|     private Integer cmodel3Id; | 
|   | 
|     @ApiModelProperty(value = "是否有bom:0=无;1=有") | 
|     private Integer hasBom; | 
|     @ApiModelProperty(value = "bom工艺路线关联所有的工序集合") | 
|     private List<Procedures> procedureList; | 
|   | 
|   | 
| } |