修改MES_检验单实体字段

yun-zuoyi
宋军超 5 years ago
parent e7335bb632
commit f302b4d5f1

@ -12,6 +12,7 @@ import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Transient;
import java.io.Serializable;
/**
@ -52,7 +53,7 @@ public class MesQcOrderDetail extends BaseBean implements Serializable {
@Column(name = "CHECK_GUIDE")
@ApiParam("检测指导")
private String supplierCode;
private String checkGuide;
@Column(name = "CHECK_FREQUENCY")
@ApiParam("频率")
@ -60,7 +61,7 @@ public class MesQcOrderDetail extends BaseBean implements Serializable {
@Column(name = "IS_CONCESSION")
@ApiParam("是否允许让步")
private String fixLotNo;
private String isConCession;
@Column(name = "STATUS")
@ApiParam("状态")
@ -73,4 +74,12 @@ public class MesQcOrderDetail extends BaseBean implements Serializable {
@Column(name = "CHECK_VALUE")
@ApiParam("检测值")
private String checkValue;
@Transient
@ApiParam("本批次生产总数")
private Integer currentLotNoSum;
@Transient
@ApiParam("收货批次")
private String srcLotNo;
}

Loading…
Cancel
Save