bug
jiangping
2023-11-07 64b432916af9c9218ab3f3eca614e26c542142ae
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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;
 
 
}