李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
package com.chinaztt.mes.production.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @Description:
 * @Author: shz
 * @Date: 2022/6/10 15:44
 */
@Data
public class IfsImportMaterialUnissueDTO {
 
    @ApiModelProperty(value = "记录行唯一标识")
    private String RECORD_ID;
 
    @ApiModelProperty(value = "系统代码")
    private String SYSCODE = "L-MES";
 
    @ApiModelProperty(value = "系统名称")
    private String SYSMODEL = "报工单取消发料";
 
    @ApiModelProperty(value = "批量标识")
    private List<DataBean> BATCH_INFO;
 
    @Data
    public static class DataBean{
        @ApiModelProperty(value = "订单号")
        private String ORDER_NO;
 
        @ApiModelProperty(value = "下达号")
        private String RELEASE_NO;
 
        @ApiModelProperty(value = "序列号")
        private String SEQUENCE_NO;
 
        @ApiModelProperty(value = "行项号")
        private String LINE_ITEM_NO;
 
        @ApiModelProperty(value = "零件号")
        private String PART_NO;
 
        @ApiModelProperty(value = "库位号")
        private String LOCATION_NO;
 
        @ApiModelProperty(value = "批号")
        private String LOT_BATCH_NO;
 
        @ApiModelProperty(value = "序列号")
        private String SERIAL_NO = "*";
 
        @ApiModelProperty(value = "版本号")
        private String ENG_CHG_LEVEL = "1";
 
        @ApiModelProperty(value = "WDR编号")
        private String WAIV_DEV_REJ_NO = "*";
 
        @ApiModelProperty(value = "活动序列")
        private Integer ACTIVITY_SEQ = 0;
 
        @ApiModelProperty(value = "要取消下发的数量")
        private BigDecimal QTY_TO_UNISSUE;
    }
}