lyh
3 天以前 3ce27b7faf8850d101a1511a685250fe562dca18
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
package com.lxzn.framework.domain.webservice.request;
 
import lombok.Data;
 
/**
 * @Author: Lius
 * @CreateTime: 2025-02-27
 * @Description:
 */
@Data
public class WsProcedureFinish {
    /**
     * 主键
     */
    private String mesId;
    /**
     * 单元
     */
    private String dept;
    /**
     * 车间(分厂)
     */
    private String workshop;
    /**
     * 版本号(工艺规程版次)
     */
    private String revisionNo;
    /**
     * 零件名称
     */
    private String mdsItemId;
    /**
     * 零件号
     */
    private String mdsItemCode;
    /**
     * 订单号
     */
    private String taskCode;
    /**
     * 流卡号
     */
    private String ewoNo;
    /**
     * 批次号
     */
    private String batchNo;
    /**
     * 批次数量(计划数)
     */
    private String batchNum;
    /**
     * 工序号
     */
    private String opreationSeqNo;
    /**
     * 派工日期
     */
    private String dispatchDate;
    /**
     * 设备编号
     */
    private String equipmentId;
    /**
     * 状态(1 派工撤回  2 派工变更  3 完工)
     */
    private String endineStatus;
}