lyh
2026-01-19 6141f0a2140439337dccf8bfe93c4ca83605446d
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
73
74
75
76
77
package com.lxzn.framework.domain.mes;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @author clown
 * * @date 2022/10/29
 */
@Data
@NoArgsConstructor
@TableName(value = "mes_dispatch_task")
public class MesDispatchTask implements Serializable {
    @TableId(value = "id")
    private String id;
    private String mesId;
    private String busType;//1机加  2 装配
    @TableField(value = "code_1314")
    private String code1314; // 1314码
    private String engineNo; //发动机号
    private String engineReturnStatus;  //返厂状态
    private String erpWbs;  //空海军标识
    private String engineType;  //发动机类型
    private String revisionNo;  //版本号
    private String fristFlag;  //是否首件
    private String mdsItemId;  //零件ID
    private String mdsItemCode;  //零件号
    private String ewoNo; //流卡号
    private String batchNo;  //批次号
    private Integer batchNum;  //批次数量
    private String opreationSeqNoId;  //工序ID
    private String mdsItemSeq;  //顺序号
    private String opreationSeqNo;  //工序号
    private String opreationSeqType;  //工序类型
    private String mesOpreationSeqStepId;  //工步ID
    private String mesOpreationSeqStepNo;  //工步号
    private String checkType;  //校验类型
    private Date dispatchDate; // 派工日期
    private String rmdsBomId; //bomID
    private String routeId;  //工艺路线ID
    private String equipmentId;  //设备ID
    private Integer ncIssued;  // 1、下发失败 2、下发成功
    private String mdsEquipmentId; //设备编号
    private String mdsWorkcenterId; //车间编号
    @TableField(value = "attr_01")
    private String attr01; //
    @JsonProperty("attr_02")
    @TableField(value = "attr_02")
    private String attr02; //
    @TableField(value  = "attr_03")
    private String attr03; //
    @TableField(value ="attr_04")
    private String attr04; //
    @TableField(value = "attr_05")
    private String attr05; //
    @TableField(value = "task_type")
    private String taskType; // 1 正常 2 取消 3 删除
 
 
    /*数据*/
    @TableField(exist = false)
    private String contentName;
    /*是否成功  是,否*/
    @TableField(exist = false)
    private String isSuccess;
    /*原因*/
    @TableField(exist = false)
    private String remarks;
 
}