Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
ba7fe81978
@ -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> {
|
||||
}
|
@ -0,0 +1,71 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description : 物料清单模板
|
||||
* @Reference :
|
||||
* @author: jessica.chen
|
||||
* @date: 2019/10/22 17:10
|
||||
* @Modify:
|
||||
*/
|
||||
|
||||
@Data
|
||||
@Api(value="领料单模板",description = "领料单模板")
|
||||
public class WmsBomTemplate extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 2167743108452607611L;
|
||||
|
||||
@ApiParam(value = "父物料号")
|
||||
@AnnoOutputColumn
|
||||
private String partNo;
|
||||
|
||||
@ApiParam(value = "父物料描述")
|
||||
@AnnoOutputColumn
|
||||
private String partName;
|
||||
|
||||
@ApiParam(value = "父计量单位")
|
||||
@AnnoOutputColumn
|
||||
private String unit;
|
||||
|
||||
@ApiParam(value = "父级数量")
|
||||
@AnnoOutputColumn
|
||||
private Double qty;
|
||||
|
||||
@ApiParam(value = "子物料号")
|
||||
@AnnoOutputColumn
|
||||
private String itemPartNo;
|
||||
|
||||
@ApiParam(value = "子物料描述")
|
||||
@AnnoOutputColumn
|
||||
private String itemPartName;
|
||||
|
||||
@ApiParam(value = "子计量单位")
|
||||
@AnnoOutputColumn
|
||||
private String itemUnit;
|
||||
|
||||
@ApiParam(value = "子用量")
|
||||
@AnnoOutputColumn
|
||||
private Double itemQty;
|
||||
|
||||
@ApiParam(value = "BOM编号")
|
||||
@AnnoOutputColumn
|
||||
private String bomNum;
|
||||
|
||||
@ApiParam(value = "BOM版本号")
|
||||
@AnnoOutputColumn
|
||||
private String bomVersion;
|
||||
|
||||
@ApiParam(value = "有效起始日期")
|
||||
@AnnoOutputColumn
|
||||
private String effStartTime;
|
||||
|
||||
@ApiParam(value = "有效截止日期")
|
||||
@AnnoOutputColumn
|
||||
private String effEndTime;
|
||||
|
||||
}
|
Loading…
Reference in New Issue