质量检测
parent
1e9f1a5c47
commit
7412eb3f16
@ -0,0 +1,54 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.bean;
|
||||||
|
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
import org.hibernate.annotations.DynamicInsert;
|
||||||
|
import org.hibernate.annotations.DynamicUpdate;
|
||||||
|
|
||||||
|
import javax.persistence.Column;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: jessica.chen
|
||||||
|
* @CreateDate: 2019\11\15 10:01
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QC_ORDER_RECORD")
|
||||||
|
@Api("MES_检验单检验记录")
|
||||||
|
public class MesQcOrderRecord extends BaseBean implements Serializable {
|
||||||
|
private static final long serialVersionUID = -5245624982023882232L;
|
||||||
|
|
||||||
|
@Column(name = "ORDER_NO")
|
||||||
|
@ApiParam("质检单号")
|
||||||
|
private String orderNo;
|
||||||
|
|
||||||
|
@Column(name = "CHECK_RESULT")
|
||||||
|
@ApiParam("判定结果")
|
||||||
|
private Integer checkResult = 0;
|
||||||
|
|
||||||
|
@Column(name = "CHECK_VALUE")
|
||||||
|
@ApiParam("检测值")
|
||||||
|
private String checkValue;
|
||||||
|
|
||||||
|
@Column(name = "SERIAL_NUMBER")
|
||||||
|
@ApiParam("产品条码")
|
||||||
|
private String serialNumber;
|
||||||
|
|
||||||
|
@Column(name = "CHECK_SEQ")
|
||||||
|
@ApiParam("检测顺序")
|
||||||
|
private Integer checkSeq;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesCheckDataCfg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: joke.wang
|
||||||
|
* @CreateDate: 2019\11\18 10:34
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesCheckDataCfgRepository extends BaseRepository<MesCheckDataCfg, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue