[需求:1086, mes设备点检保养作业]
parent
26b4a5c52c
commit
07749b50ec
@ -0,0 +1,73 @@
|
|||||||
|
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 javax.persistence.Transient;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :设备点检保养作业记录
|
||||||
|
* @Reference :
|
||||||
|
* @Author : wangjie
|
||||||
|
* @CreateDate : 2019-10-11
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_EQU_TASK_STANDARD_RECORD")
|
||||||
|
@Api("设备点检保养作业记录")
|
||||||
|
public class MesEquTaskStandardRecord extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name = "TASK_NO")
|
||||||
|
@ApiParam("作业任务编号")
|
||||||
|
private String taskNo;
|
||||||
|
|
||||||
|
@Column(name = "TASK_TYPE")
|
||||||
|
@ApiParam("作业类型")
|
||||||
|
private Integer taskType;
|
||||||
|
|
||||||
|
@Column(name = "EQUIPMENT_CODE")
|
||||||
|
@ApiParam("设备代码")
|
||||||
|
private String equipmentCode;
|
||||||
|
|
||||||
|
@Column(name = "EQUIPMENT_NAME")
|
||||||
|
@ApiParam("设备名称")
|
||||||
|
private String equipmentName;
|
||||||
|
|
||||||
|
@Column(name = "ACTION_ITEM")
|
||||||
|
@ApiParam("操作项")
|
||||||
|
private String actionItem;
|
||||||
|
|
||||||
|
@Column(name = "ACTION_STANDARD")
|
||||||
|
@ApiParam("操作标准")
|
||||||
|
private String actionStandard;
|
||||||
|
|
||||||
|
@Column(name = "ACTION_GUIDE")
|
||||||
|
@ApiParam("操作指导")
|
||||||
|
private String actionGuide;
|
||||||
|
|
||||||
|
@Column(name = "CHECK_RESULT")
|
||||||
|
@ApiParam("判定结果")
|
||||||
|
private Integer checkResult;
|
||||||
|
|
||||||
|
@Column(name = "FINAL_RESULT")
|
||||||
|
@ApiParam("整体结果")
|
||||||
|
private Integer finalResult;
|
||||||
|
|
||||||
|
@Column(name = "MEMO")
|
||||||
|
@ApiParam("备注")
|
||||||
|
private String memo;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesEquTaskStandardRecord;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : wangjie
|
||||||
|
* @CreateDate : 2019-10-11
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface MesEquTaskStandardRecordRepository extends BaseRepository<MesEquTaskStandardRecord, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue