| package doumeemes.dao.ext.vo; | 
|   | 
| import doumeemes.core.annotation.excel.ExcelColumn; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * @author T14 | 
|  */ | 
| @Data | 
| @ApiModel("生产投料明细") | 
| public class WorkorderRecordBathExportExtListVO { | 
|   | 
|   | 
|     @ApiModelProperty(value = "工单编号") | 
|     @ExcelColumn(name = "工单编号",index =1 ,width =15) | 
|     private String workordercode; | 
|   | 
|     @ApiModelProperty(value = "工单状态 0已创建、1已备料、2已完工、3已检验、4已报工、5已入库、6已取消", example = "1") | 
|     @ExcelColumn(name="工单状态", index = 2,width =15) | 
|     private String status; | 
|   | 
|     @ApiModelProperty(value = "编码,不可重复") | 
|     @ExcelColumn(name="物料编码",index =3,width =15) | 
|     private String materialcode; | 
|   | 
|     @ApiModelProperty(value = "名称,不可重复") | 
|     @ExcelColumn(name="物料名称",index =4,width =15) | 
|     private String materialname; | 
|   | 
|     @ApiModelProperty(value = "批次号") | 
|     @ExcelColumn(name="生产批次号",index =5,width =15) | 
|     private String batch; | 
|   | 
|     @ApiModelProperty(value = "工序") | 
|     @ExcelColumn(name="工序",index =6,width =15) | 
|     private String proceduresname; | 
|   | 
|     @ApiModelProperty(value = "计划数量") | 
|     @ExcelColumn(name="计划数量",index =7,width =15) | 
|     private String planNum; | 
|   | 
|     @ApiModelProperty(value = "单位名称") | 
|     private String unitname; | 
|   | 
|     @ApiModelProperty(value = "生产员工") | 
|     @ExcelColumn(name="生产员工",index =8,width =15) | 
|     private String  procedureName; | 
|   | 
|     @ApiModelProperty(value = "质量属性0合格 1不良 2报废(只有type=1才有值)") | 
|     @ExcelColumn(name="质量属性",index = 9,width =15,valueMapping = "0=合格;1=不良;2=报废") | 
|     private Integer materialDonetype; | 
|   | 
|     @ApiModelProperty(value = "数量", example = "1") | 
|     @ExcelColumn(name="数量",index = 10,width =15) | 
|     private String num; | 
|   | 
| //    @ExcelColumn(name="单位",index =11,width =15) | 
|     private String unintname; | 
|   | 
|   | 
|     @ApiModelProperty(value = "设备") | 
|     @ExcelColumn(name="设备",index =11,width =15) | 
|     private String deviceCode; | 
|   | 
|     @ApiModelProperty(value = "投料时间") | 
|     @ExcelColumn(name="投料时间",index =12,width =15) | 
|     private String createTime; | 
|   | 
|   | 
| } |