解决冲突
parent
ef08c52411
commit
72bdd253fa
@ -0,0 +1,76 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.pcn.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 javax.persistence.Transient;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: joke.wang
|
||||||
|
* @CreateDate: 2019\10\12 14:46
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name="MES_QC_CHECK_STANDARD")
|
||||||
|
@Api("质量检测标准")
|
||||||
|
public class MesQcCheckStandard extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("物料编码")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "WORK_CENTER_CODE")
|
||||||
|
@ApiParam("工作中心代码")
|
||||||
|
private String workCenterCode;
|
||||||
|
|
||||||
|
@Column(name = "WORK_CELL_CODE")
|
||||||
|
@ApiParam("工作单元代码")
|
||||||
|
private String workCellCode;
|
||||||
|
|
||||||
|
@Column(name = "CHECK_TYPE")
|
||||||
|
@ApiParam("检测类型")
|
||||||
|
private Integer checkType;
|
||||||
|
|
||||||
|
@Column(name = "CHECK_ITEM")
|
||||||
|
@ApiParam("检测项")
|
||||||
|
private String checkItem;
|
||||||
|
|
||||||
|
@Column(name = "CHECK_STANDARD")
|
||||||
|
@ApiParam("检测标准")
|
||||||
|
private String checkStandard;
|
||||||
|
|
||||||
|
@Column(name = "CHECK_GUIDE")
|
||||||
|
@ApiParam("检测指导")
|
||||||
|
private String checkGuide;
|
||||||
|
|
||||||
|
@Column(name = "CHECK_FREQUENCY")
|
||||||
|
@ApiParam("频率")
|
||||||
|
private String checkFrequency;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
private String partName;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@ApiParam("检测结果")
|
||||||
|
private String checkResult;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@ApiParam("检测值")
|
||||||
|
private String checkValue;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.pcn.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesQcCheckStandard;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: joke.wang
|
||||||
|
* @CreateDate: 2019\10\12 14:58
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesQcCheckStandardRepository extends BaseRepository<MesQcCheckStandard, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue