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 + '\'' +
|
'}';
|
}
|
}
|