Merge remote-tracking branch 'origin/dev' into dev
commit
e8ea5a3c90
@ -0,0 +1,89 @@
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: jessica.chen
|
||||
* @CreateDate: 2019\11\15 10:01
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "IF_QC_ORDER")
|
||||
@Api("IF_质检单")
|
||||
public class IfQcOrder extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -5412635747424111476L;
|
||||
@Column(name = "ORDER_NO")
|
||||
@ApiParam("质检单号")
|
||||
private String orderNo;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "QTY")
|
||||
@ApiParam("数量")
|
||||
private Double qty = 0D;
|
||||
|
||||
@Column(name = "UNIT")
|
||||
@ApiParam("单位")
|
||||
private String unit;
|
||||
|
||||
@Column(name = "SUPPLIER_CODE")
|
||||
@ApiParam("供应商代码")
|
||||
private String supplierCode;
|
||||
|
||||
@Column(name = "SRC_LOT_NO")
|
||||
@ApiParam("收货批次")
|
||||
private String srcLotNo;
|
||||
|
||||
@Column(name = "FIX_LOT_NO")
|
||||
@ApiParam("特殊批次")
|
||||
private String fixLotNo;
|
||||
|
||||
@Column(name = "RELATION_ORDER_NO")
|
||||
@ApiParam("关联单号")
|
||||
private String relationOrderNo;
|
||||
|
||||
@Column(name = "UUID")
|
||||
@ApiParam("数据唯一编号")
|
||||
private String uuid;
|
||||
|
||||
@Column(name = "ORGANIZTION_CODE")
|
||||
@ApiParam("工厂代码")
|
||||
private String organiztionCode;
|
||||
|
||||
@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,64 @@
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: jessica.chen
|
||||
* @CreateDate: 2019\11\15 10:01
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "IF_QC_RESULT")
|
||||
@Api("IF_质检结果")
|
||||
public class IfQcResult extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -5412635747424111476L;
|
||||
@Column(name = "ORDER_NO")
|
||||
@ApiParam("质检单号")
|
||||
private String orderNo;
|
||||
|
||||
@Column(name = "UUID")
|
||||
@ApiParam("数据唯一编号")
|
||||
private String uuid;
|
||||
|
||||
@Column(name = "QC_RESULT")
|
||||
@ApiParam("质检结果")
|
||||
private String qcResult;
|
||||
|
||||
@Column(name = "ORGANIZTION_CODE")
|
||||
@ApiParam("工厂代码")
|
||||
private String organiztionCode;
|
||||
|
||||
@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,60 @@
|
||||
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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/5/12 5:53 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_PART_STOCK_SCHEDULE")
|
||||
@Api("MES_库存排程配置")
|
||||
public class MesPartStockSchedule extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -8265586624645977526L;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "MIN_CAPACITY")
|
||||
@ApiParam("最小库存")
|
||||
private Integer minCapacity;
|
||||
|
||||
@Column(name = "TOTAL_CAPACITY")
|
||||
@ApiParam("总容量")
|
||||
private Integer totalCapacity;
|
||||
|
||||
@Column(name = "STANDARD_CAPACITY")
|
||||
@ApiParam("标准值")
|
||||
private Integer standardCapacity;
|
||||
|
||||
@Column(name = "SCHEDULE_CAPACITY")
|
||||
@ApiParam("待生产箱数")
|
||||
private Integer scheduleCapacity;
|
||||
|
||||
@Column(name = "PLAN_QTY")
|
||||
@ApiParam("产品JSP个数")
|
||||
private Integer planQty;
|
||||
|
||||
@Column(name = "TOTAL_PLAN_QTY")
|
||||
@ApiParam("JSP总数")
|
||||
private Integer totalPlanQty;
|
||||
}
|
@ -0,0 +1,94 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: jessica.chen
|
||||
* @CreateDate: 2019\11\18 9:34
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Api("QC质检单model")
|
||||
public class IfQcOrderDataModel extends BaseBean {
|
||||
|
||||
@ApiParam("ruid")
|
||||
private Long ruid;
|
||||
|
||||
@ApiParam("收货流水号")
|
||||
private Long uuid;
|
||||
|
||||
@ApiParam("域")
|
||||
private String werks;
|
||||
|
||||
@ApiParam("地点")
|
||||
private String lgort;
|
||||
|
||||
@ApiParam("收货库位")
|
||||
private String wlbrt;
|
||||
|
||||
@ApiParam("单据号")
|
||||
private String refid;
|
||||
|
||||
@ApiParam("行号")
|
||||
private Integer zeile;
|
||||
|
||||
@ApiParam("业务类型")
|
||||
private String action;
|
||||
|
||||
@ApiParam("供应商编码")
|
||||
private String lifnr;
|
||||
|
||||
@ApiParam("物料编码")
|
||||
private String matnr;
|
||||
|
||||
@ApiParam("收货数量")
|
||||
private String erfmg;
|
||||
|
||||
@ApiParam("计量单位")
|
||||
private String erfme;
|
||||
|
||||
@ApiParam("检验编号")
|
||||
private String chkno;
|
||||
|
||||
@ApiParam("炉批号")
|
||||
private String stono;
|
||||
|
||||
@ApiParam("收货日期")
|
||||
private String zpost;
|
||||
|
||||
@ApiParam("收货时间")
|
||||
private String ztime;
|
||||
|
||||
@ApiParam("添加日期")
|
||||
private String addtimeYmd;
|
||||
|
||||
@ApiParam("添加时间")
|
||||
private String addtimeHms;
|
||||
|
||||
@ApiParam("处理日期")
|
||||
private String finishtimeYmd;
|
||||
|
||||
@ApiParam("处理时间")
|
||||
private String finishtimeHms;
|
||||
|
||||
@ApiParam("删除标记")
|
||||
private Integer deleteFlag;
|
||||
|
||||
@ApiParam("读取标识")
|
||||
private Integer readFlag;
|
||||
|
||||
@ApiParam("错误代码")
|
||||
private String errCode;
|
||||
|
||||
@ApiParam("错误信息")
|
||||
private String errMsg;
|
||||
}
|
@ -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.IfPackageDetail;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.IfQcOrder;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: joke.wang
|
||||
* @CreateDate: 2019\11\18 10:34
|
||||
* @Modify:
|
||||
**/
|
||||
public interface IfQcOrderRepository extends BaseRepository<IfQcOrder, 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.IfQcResult;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: joke.wang
|
||||
* @CreateDate: 2019\11\18 10:34
|
||||
* @Modify:
|
||||
**/
|
||||
public interface IfQcResultRepository extends BaseRepository<IfQcResult, 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.MesPartStockSchedule;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/5/12 5:57 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Repository
|
||||
public interface MesPartStockScheduleRepository extends BaseRepository<MesPartStockSchedule, Long> {
|
||||
}
|
Loading…
Reference in New Issue