| package doumeemes.dao.ext.vo; | 
|   | 
| 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; | 
|   | 
| /** | 
|  * @author 江蹄蹄 | 
|  * @since 2022/07/07 16:15 | 
|  */ | 
| @Data | 
| @ApiModel("工单类-终检明细表 Ext列表对象") | 
| public class EndcheckDetailExtListVO { | 
|   | 
|     @ApiModelProperty(value = "主键", example = "1") | 
|     @ExcelColumn(name="主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "是否已删除 0未删除 1已删除", example = "1") | 
|     @ExcelColumn(name="是否已删除 0未删除 1已删除") | 
|     private Byte deleted; | 
|   | 
|     @ApiModelProperty(value = "创建人编码", example = "1") | 
|     @ExcelColumn(name="创建人编码") | 
|     private Integer createUser; | 
|   | 
|     @ApiModelProperty(value = "创建时间") | 
|     @ExcelColumn(name="创建时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date createTime; | 
|   | 
|     @ApiModelProperty(value = "更新人编码", example = "1") | 
|     @ExcelColumn(name="更新人编码") | 
|     private Integer updateUser; | 
|   | 
|     @ApiModelProperty(value = "更新时间") | 
|     @ExcelColumn(name="更新时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date updateTime; | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     @ExcelColumn(name="备注") | 
|     private String remark; | 
|   | 
|     @ApiModelProperty(value = "主组织编码(关联department表根组织)", example = "1") | 
|     @ExcelColumn(name="主组织编码(关联department表根组织)") | 
|     private Integer rootDepartId; | 
|   | 
|     @ApiModelProperty(value = "公司级组织编码(关联department表)", example = "1") | 
|     @ExcelColumn(name="公司级组织编码(关联department表)") | 
|     private Integer departId; | 
|   | 
|     @ApiModelProperty(value = "所属终检编码(关联endcheck表)", example = "1") | 
|     @ExcelColumn(name="所属终检编码(关联endcheck表)") | 
|     private Integer endcheckId; | 
|   | 
|     @ApiModelProperty(value = "被检验工装编码(关联appliances表)", example = "1") | 
|     @ExcelColumn(name="被检验工装编码(关联appliances表)") | 
|     private Integer appliancesId; | 
|   | 
|     @ApiModelProperty(value = "产出记录物料总数量", example = "1") | 
|     @ExcelColumn(name="产出记录物料总数量") | 
|     private Integer num; | 
|   | 
|     @ApiModelProperty(value = "检验合格数量", example = "1") | 
|     @ExcelColumn(name="检验合格数量") | 
|     private Integer qualifiedNum; | 
|   | 
|     @ApiModelProperty(value = "检验不合格数量", example = "1") | 
|     @ExcelColumn(name="检验不合格数量") | 
|     private Integer unqualifiedNum; | 
|   | 
|     @ApiModelProperty(value = "检验不良品工装编码(关联appliances表)") | 
|     @ExcelColumn(name="检验不良品工装编码(关联appliances表)") | 
|     private String qualifiedApplianceId; | 
|   | 
|     @ApiModelProperty(value = "物料编码(关联material_distribute表)", example = "1") | 
|     @ExcelColumn(name="物料编码(关联material_distribute表)") | 
|     private Integer materialId; | 
|   | 
|     @ApiModelProperty(value = "单位编码(关联unit_distribute表)", example = "1") | 
|     @ExcelColumn(name="单位编码(关联unit_distribute表)") | 
|     private Integer unitId; | 
|   | 
|     @ApiModelProperty(value = "物料批次号") | 
|     @ExcelColumn(name="物料批次号") | 
|     private String materialBatch; | 
|   | 
|     @ApiModelProperty(value = "不良原因说明") | 
|     @ExcelColumn(name="不良原因说明") | 
|     private String checkInfo; | 
|   | 
| } |