Merge branch 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into test
commit
a751d5a8a7
@ -0,0 +1,61 @@
|
||||
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;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description :MES_库位信息
|
||||
* @Reference :
|
||||
* @Author : jack.jia
|
||||
* @CreateDate : 2019-04-12
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_LOCATION")
|
||||
@Api("MES_库位信息")
|
||||
public class MesLocation extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -896118285166769048L;
|
||||
@Column(name = "LOCATION_CODE")
|
||||
@ApiParam("库位代码")
|
||||
private String locationCode;
|
||||
|
||||
@Column(name = "LOCATION_NAME")
|
||||
@ApiParam("库位名称")
|
||||
private String locationName;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "QTY")
|
||||
@ApiParam("数量")
|
||||
private Double qty = 0d;
|
||||
|
||||
@Column(name = "MAX_QTY")
|
||||
@ApiParam("最大存储量")
|
||||
private Integer maxQty = 0;
|
||||
|
||||
@Transient
|
||||
@ApiParam("物料名称")
|
||||
private String partNameRdd;
|
||||
}
|
@ -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.IfProductOffLine;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesLocation;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: joke.wang
|
||||
* @CreateDate: 2019\11\18 10:32
|
||||
* @Modify:
|
||||
**/
|
||||
public interface MesLocationRepository extends BaseRepository<MesLocation, Long> {
|
||||
}
|
@ -0,0 +1,118 @@
|
||||
package cn.estsh.i3plus.pojo.sweb.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.Table;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-06-10
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "SWEB_PO_SN_TO_WMS")
|
||||
@Api("库存移动单处理成功后的记录")
|
||||
public class SwebPoSnToWms extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 746409789382994374L;
|
||||
@Column(name = "ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
public String orderNo;
|
||||
|
||||
@ApiParam("供应商编号")
|
||||
@Column(name = "VENDOR_CODE")
|
||||
private String vendorCode;
|
||||
|
||||
@ApiParam("供应商名称")
|
||||
@Column(name = "VENDOR_NAME")
|
||||
private String vendorName;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam(value = "零件号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "PART_NAME")
|
||||
@ApiParam(value = "零件名称")
|
||||
private String partName;
|
||||
|
||||
@ApiParam("零件类型")
|
||||
@Column(name = "PART_TYPE")
|
||||
private Integer partType;
|
||||
|
||||
@ApiParam(value = "单位")
|
||||
@Column(name = "UNIT")
|
||||
private String unit;
|
||||
|
||||
@Column(name = "BOX_QTY")
|
||||
@ColumnDefault("0")
|
||||
@ApiParam(value = "箱数", example = "0")
|
||||
private Integer boxQty;
|
||||
|
||||
@Column(name = "SERIAL_NO")
|
||||
@ApiParam(value = "序列号")
|
||||
private String serialNo;
|
||||
|
||||
@Column(name = "SN")
|
||||
@ApiParam(value = "箱条码")
|
||||
private String sn;
|
||||
|
||||
@Column(name = "ERP_WAREHOUSE")
|
||||
@ApiParam("库存地")
|
||||
private String erpWarehouse;
|
||||
|
||||
@Column(name = "PRODUCTION_TIME")
|
||||
@ApiParam(value = "产生时间")
|
||||
private String productionTime;
|
||||
|
||||
@Column(name = "PRINT_TIME")
|
||||
@ApiParam(value = "打印时间")
|
||||
private String printTime;
|
||||
|
||||
@Column(name = "PRINTS")
|
||||
@ApiParam("打印次数")
|
||||
private Integer prints;
|
||||
|
||||
@Column(name = "CHECK_CODE")
|
||||
@ApiParam(value = "检验编号")
|
||||
private String checkCode;
|
||||
|
||||
@Column(name = "STOVE_NO")
|
||||
@ApiParam(value = "特殊批号")
|
||||
private String stoveNo;
|
||||
|
||||
@Column(name = "BATCH_NO")
|
||||
@ApiParam(value = "批次号")
|
||||
private String batchNo;
|
||||
|
||||
@ApiParam("是否同步")
|
||||
@Column(name = "IS_SYN")
|
||||
private String isSyn;
|
||||
|
||||
@Column(name = "REC_TIME")
|
||||
@ApiParam(value = "收货时间")
|
||||
private String recTime;
|
||||
|
||||
@Column(name = "PACKAGE_NO")
|
||||
@ApiParam(value = "包装编号")
|
||||
private String packageNo;
|
||||
|
||||
@ColumnDefault("0")
|
||||
@Column(name = "WEIGHT")
|
||||
@ApiParam(value = "重量")
|
||||
private Double weight;
|
||||
}
|
Loading…
Reference in New Issue