卡斯马热处理翻包新增模块的dao
parent
c2f9937b37
commit
46c0206d6a
@ -0,0 +1,82 @@
|
|||||||
|
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.ColumnDefault;
|
||||||
|
import org.hibernate.annotations.DynamicInsert;
|
||||||
|
import org.hibernate.annotations.DynamicUpdate;
|
||||||
|
|
||||||
|
import javax.persistence.Column;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Lob;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: dominic
|
||||||
|
* @CreateDate: 2020/10/29 14:11
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "IF_PACKAGE")
|
||||||
|
@Api("料箱表")
|
||||||
|
public class IfPackage extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 9099416791684702129L;
|
||||||
|
|
||||||
|
@Column(name = "PACKAGE_NO")
|
||||||
|
@ApiParam("包装编号")
|
||||||
|
private String packageNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "QTY", columnDefinition = "decimal(18,8)")
|
||||||
|
@ColumnDefault("0")
|
||||||
|
@ApiParam("数量")
|
||||||
|
private Double qty;
|
||||||
|
|
||||||
|
@Column(name = "PORCESS_NAME")
|
||||||
|
@ApiParam("工序名称")
|
||||||
|
private String porcessName;
|
||||||
|
|
||||||
|
@Column(name = "RK_TYPE")
|
||||||
|
@ApiParam("料架类型")
|
||||||
|
private String rkType;
|
||||||
|
|
||||||
|
@Column(name = "ACTION_CODE")
|
||||||
|
@ApiParam("动作代码")
|
||||||
|
private String actionCode;
|
||||||
|
|
||||||
|
@Column(name = "ACTION_DATE_TIME")
|
||||||
|
@ApiParam("操作时间")
|
||||||
|
private String actionDateTime;
|
||||||
|
|
||||||
|
@Column(name = "ACTION_USER")
|
||||||
|
@ApiParam("操作人")
|
||||||
|
private String actionUser;
|
||||||
|
|
||||||
|
@Column(name = "ERROR_MESSAGE")
|
||||||
|
@ApiParam("异常消息")
|
||||||
|
@Lob
|
||||||
|
private String errorMessage;
|
||||||
|
|
||||||
|
@Column(name = "IF_CODE")
|
||||||
|
@ApiParam("接口代码")
|
||||||
|
private String ifCode;
|
||||||
|
|
||||||
|
@Column(name = "SYNC_STATUS")
|
||||||
|
@ApiParam("同步状态")
|
||||||
|
private Integer syncStatus;
|
||||||
|
|
||||||
|
}
|
@ -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.MesContainerLocation;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: dominic
|
||||||
|
* @CreateDate: 2020\11\4 11:21
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface MesContainerLocationRepository extends BaseRepository<MesContainerLocation, Long> {
|
||||||
|
}
|
@ -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.MesCustomerSnRule;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: dominic
|
||||||
|
* @CreateDate: 2020\11\4 13:33
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface MesCustomerSnRuleRepository extends BaseRepository<MesCustomerSnRule, Long> {
|
||||||
|
}
|
@ -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.MesPartContainerCapacity;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : dominic
|
||||||
|
* @CreateDate : 2020-11-10
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface MesPartContainerCapacityRepository extends BaseRepository<MesPartContainerCapacity, Long> {
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesProdCtCapacityConfig;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : dominic
|
||||||
|
* @CreateDate : 2020-11-04
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface MesProdCtCapacityConfigRepository extends BaseRepository<MesProdCtCapacityConfig, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue