lyh
2026-03-23 533ae8a2dc71edeff73f1e0c62d23718d3ff059b
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
78
79
80
81
82
83
84
85
86
87
88
package com.lxzn.framework.domain.mes;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @author clown
 * * @date 2022/10/29
 */
@Data
@NoArgsConstructor
@TableName(value = "mes_procedure_finish")
public class MesProcedureFinish implements Serializable {
    @TableId(value = "id")
    private String id;
    private String mesId;
    private String mdsItemCode;  //零件号
    private String batchNo;  //批次号
    private String batchSun;   //批次数量
    private String mdsOperationSeqId;  //基础工序ID
    private String mesEwoId;//流卡ID
    private String mesEwoNo;//流卡号
    private String mesRouteId;//工艺路线ID
    private String innerOrder;//顺序号
    private String mesOperationSeqId;//工序ID
    private String mesOperationSeqNo;//工序号
    private String mesOperationSeqStepId;//工步ID
    private String mesOperationSeqStepNo;//工步号
    private String processStage;//工步号
    private String checkType;//检验类型:1自检,2互检,3专检
    private String firstCheckFlag;//是否首件:0:非首件,1:首件
    private String serialNo;//工序小号串serialNo
    private String qualifiedFlag;//合格标识
    private String checkCode;//被测参数标识
    private String checkContent;//检测内容
    private String checkValue;//实测值
    private String checkOperatior;//操作人员
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss.SSS")
    private Date checkDate;//测量时间
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss.SSS")
    private Date syncDate;//日期
    private String attr01;//对方系统ID
    private String attr02;//1工人采集,2组长采集,3检验采集
    private String attr03;//1定性,0定量
    private String attr04;//备注信息
 
 
    @Override
    public String toString() {
        return "MesProcedureFinish{" +
                "id='" + id + '\'' +
                ", mesId='" + mesId + '\'' +
                ", mdsItemCode='" + mdsItemCode + '\'' +
                ", batchNo='" + batchNo + '\'' +
                ", batchSun='" + batchSun + '\'' +
                ", mdsOperationSeqId='" + mdsOperationSeqId + '\'' +
                ", mesEwoId='" + mesEwoId + '\'' +
                ", mesEwoNo='" + mesEwoNo + '\'' +
                ", mesRouteId='" + mesRouteId + '\'' +
                ", innerOrder='" + innerOrder + '\'' +
                ", mesOperationSeqId='" + mesOperationSeqId + '\'' +
                ", mesOperationSeqNo='" + mesOperationSeqNo + '\'' +
                ", mesOperationSeqStepId='" + mesOperationSeqStepId + '\'' +
                ", mesOperationSeqStepNo='" + mesOperationSeqStepNo + '\'' +
                ", processStage='" + processStage + '\'' +
                ", checkType='" + checkType + '\'' +
                ", firstCheckFlag='" + firstCheckFlag + '\'' +
                ", serialNo='" + serialNo + '\'' +
                ", qualifiedFlag='" + qualifiedFlag + '\'' +
                ", checkCode='" + checkCode + '\'' +
                ", checkContent='" + checkContent + '\'' +
                ", checkValue='" + checkValue + '\'' +
                ", checkOperatior='" + checkOperatior + '\'' +
                ", checkDate=" + checkDate +
                ", syncDate=" + syncDate +
                ", attr01='" + attr01 + '\'' +
                ", attr02='" + attr02 + '\'' +
                ", attr03='" + attr03 + '\'' +
                ", attr04='" + attr04 + '\'' +
                '}';
    }
}