Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
99a1ec309d
@ -0,0 +1,57 @@
|
|||||||
|
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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: Wynne.Lu
|
||||||
|
* @CreateDate: 2019/12/12 4:00 下午
|
||||||
|
* @Description:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "IF_WMS_PPM")
|
||||||
|
@Api("WMS PPM 接口表")
|
||||||
|
public class IfWmsPpm extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name = "YEAR")
|
||||||
|
@ApiParam("年")
|
||||||
|
private String year;
|
||||||
|
|
||||||
|
@Column(name = "MONTH")
|
||||||
|
@ApiParam("月")
|
||||||
|
private String month;
|
||||||
|
|
||||||
|
@Column(name = "PPM_VALUE")
|
||||||
|
@ApiParam("PPM值")
|
||||||
|
private String ppmValue;
|
||||||
|
|
||||||
|
@Column(name = "SYNC_STATUS")
|
||||||
|
@ApiParam("同步状态")
|
||||||
|
private Integer syncStatus;
|
||||||
|
|
||||||
|
@Column(name = "ERROR_MESSAGE")
|
||||||
|
@ApiParam("异常消息")
|
||||||
|
private String errorMessage;
|
||||||
|
|
||||||
|
@Column(name = "ACTION_CODE")
|
||||||
|
@ApiParam("动作代码")
|
||||||
|
private String actionCode;
|
||||||
|
|
||||||
|
@Column(name = "IF_CODE")
|
||||||
|
@ApiParam("接口代码")
|
||||||
|
private String ifCode;
|
||||||
|
}
|
@ -0,0 +1,52 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.bean;
|
||||||
|
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||||
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||||
|
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;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :质量标准配置
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jack.jia
|
||||||
|
* @CreateDate : 2019-04-02
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QUALITY_STANDARD_CFG")
|
||||||
|
@Api("质量标准配置")
|
||||||
|
public class MesQualityStandardCfg extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name = "STANDARD_TYPE")
|
||||||
|
@ApiParam("标准类型")
|
||||||
|
private Integer standardType;
|
||||||
|
|
||||||
|
@Column(name = "OBJECT_TYPE")
|
||||||
|
@ApiParam("对象类型")
|
||||||
|
private Integer objectType;
|
||||||
|
|
||||||
|
@Column(name = "OBJECT_KEY_VALUE")
|
||||||
|
@ApiParam("对象键值")
|
||||||
|
private String objectKeyValue;
|
||||||
|
|
||||||
|
@Column(name = "OBJECT_KEY")
|
||||||
|
@ApiParam("对象键")
|
||||||
|
private String objectKey;
|
||||||
|
|
||||||
|
}
|
@ -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.IfWmsPpm;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: joke.wang
|
||||||
|
* @CreateDate: 2019\11\18 10:34
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface IfWmsPpmRepository extends BaseRepository<IfWmsPpm, Long> {
|
||||||
|
}
|
@ -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.MesQualityStandardCfg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: joke.wang
|
||||||
|
* @CreateDate: 2019\11\13 11:53
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesQualityStandardCfgRepository extends BaseRepository<MesQualityStandardCfg, Long> {
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.dto;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 装车单打印
|
||||||
|
* @Reference :
|
||||||
|
* @Author : gcj
|
||||||
|
* @CreateDate : 2019-12-06 15:50
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class WmsTmsShipModel {
|
||||||
|
|
||||||
|
@ApiParam("物料编码")
|
||||||
|
private String partNo;
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
private String partName;
|
||||||
|
@ApiParam("需求数量")
|
||||||
|
private Double qty;
|
||||||
|
@ApiParam("实际数量")
|
||||||
|
private Double recQty;
|
||||||
|
@ApiParam("单位")
|
||||||
|
private String unit;
|
||||||
|
}
|
Loading…
Reference in New Issue