Merge branch 'master' of http://git.estsh.com/i3-IMPP/i3plus-pojo
commit
1d0373aa41
@ -0,0 +1,60 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.hibernate.annotations.DynamicInsert;
|
||||||
|
import org.hibernate.annotations.DynamicUpdate;
|
||||||
|
|
||||||
|
import javax.persistence.Column;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : ASN订单主表
|
||||||
|
* @Reference :
|
||||||
|
* @Author : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 15:58
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@Table(name="WMS_DOC_ASN_MASTER")
|
||||||
|
@Api("ASN主表信息")
|
||||||
|
public class WmsASNMaster extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name="ORDER_NO")
|
||||||
|
@ApiParam("订单号")
|
||||||
|
public String orderNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单据类型:REG=原物料采购,
|
||||||
|
* SUB=委外采购,TAR=多角贸易采购,TAP=多角代采购
|
||||||
|
*/
|
||||||
|
@Column(name="TYPE")
|
||||||
|
@ApiParam("单据类型")
|
||||||
|
public String type;
|
||||||
|
|
||||||
|
@Column(name="STATUS")
|
||||||
|
@ApiParam("状态")
|
||||||
|
public String status;
|
||||||
|
|
||||||
|
@Column(name="VENDOR_NO")
|
||||||
|
@ApiParam("供应商编号")
|
||||||
|
public String vendorNo;
|
||||||
|
|
||||||
|
@Column(name="VERSION")
|
||||||
|
@ApiParam("版本")
|
||||||
|
public String version;
|
||||||
|
|
||||||
|
@Column(name="SRC")
|
||||||
|
@ApiParam("单据来源")
|
||||||
|
public String src;
|
||||||
|
|
||||||
|
@Column(name="PO_NO")
|
||||||
|
@ApiParam("PO单号")
|
||||||
|
public String poNo;
|
||||||
|
}
|
@ -0,0 +1,103 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.hibernate.annotations.DynamicInsert;
|
||||||
|
import org.hibernate.annotations.DynamicUpdate;
|
||||||
|
|
||||||
|
import javax.persistence.Column;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : ASN订单明细信息
|
||||||
|
* @Reference :
|
||||||
|
* @Author : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 15:58
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@Table(name="WMS_DOC_ASN_DETAILS")
|
||||||
|
@Api("ASN订单明细信息")
|
||||||
|
public class WmsASNMasterDetails extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name="ORDER_NO")
|
||||||
|
@ApiParam("订单号")
|
||||||
|
public String orderNo;
|
||||||
|
|
||||||
|
@Column(name="ITEM")
|
||||||
|
@ApiParam("行号")
|
||||||
|
public String item;
|
||||||
|
|
||||||
|
@Column(name="PART_NO")
|
||||||
|
@ApiParam("物料编码")
|
||||||
|
public String partNo;
|
||||||
|
|
||||||
|
@Column(name="PART_NAME_RDD")
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
public String partNameRdd;
|
||||||
|
|
||||||
|
@Column(name="QTY")
|
||||||
|
@ApiParam(value = "需求数量", example = "0")
|
||||||
|
public Double qty;
|
||||||
|
|
||||||
|
@Column(name="PO_ITEM")
|
||||||
|
@ApiParam("PO行号")
|
||||||
|
public String poItem;
|
||||||
|
|
||||||
|
@Column(name="UNIT")
|
||||||
|
@ApiParam("单位")
|
||||||
|
public String unit;
|
||||||
|
|
||||||
|
@Column(name="ZDATE")
|
||||||
|
@ApiParam("计划交货日期")
|
||||||
|
public String zDate;
|
||||||
|
|
||||||
|
@Column(name="ZTIME")
|
||||||
|
@ApiParam("计划交货时间")
|
||||||
|
public String zTime;
|
||||||
|
|
||||||
|
@Column(name="STATUS")
|
||||||
|
@ApiParam("状态")
|
||||||
|
public String status;
|
||||||
|
|
||||||
|
@Column(name="PACKAGE")
|
||||||
|
@ApiParam("包装名称")
|
||||||
|
public String pageAge;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否免费:0=计费,1=免费
|
||||||
|
*/
|
||||||
|
@Column(name="IS_FREE")
|
||||||
|
@ApiParam(value = "是否免费", example = "1")
|
||||||
|
public Integer isFree;
|
||||||
|
|
||||||
|
@Column(name="DOCK")
|
||||||
|
@ApiParam("道口")
|
||||||
|
public String dock;
|
||||||
|
|
||||||
|
@Column(name="SN_1D")
|
||||||
|
@ApiParam("一维条码")
|
||||||
|
public String snOneBarCode;
|
||||||
|
|
||||||
|
@Column(name="SN_2D")
|
||||||
|
@ApiParam("二维条码")
|
||||||
|
public String snTwoBarCode;
|
||||||
|
|
||||||
|
@Column(name="GROUP_NO")
|
||||||
|
@ApiParam("组条码")
|
||||||
|
public String groupNo;
|
||||||
|
|
||||||
|
@Column(name="ERP_WH_NO")
|
||||||
|
@ApiParam("默认收货库存地")
|
||||||
|
public String erpWhNo;
|
||||||
|
|
||||||
|
@Column(name="VENDOR_LOT_NO")
|
||||||
|
@ApiParam("供应商批次")
|
||||||
|
public String vendorLotNo;
|
||||||
|
}
|
@ -0,0 +1,92 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
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 : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 15:58
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@Table(name="WMS_DOC_FG_INSTOCK")
|
||||||
|
@Api("产品入库信息")
|
||||||
|
public class WmsFGInStock extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name="ORDER_NO")
|
||||||
|
@ApiParam("订单号")
|
||||||
|
public String orderNo;
|
||||||
|
|
||||||
|
@Column(name="WO_NO")
|
||||||
|
@ApiParam("ERP工单号")
|
||||||
|
public String woNo;
|
||||||
|
|
||||||
|
@Column(name="PART_NO")
|
||||||
|
@ApiParam("物料编码")
|
||||||
|
public String partNo;
|
||||||
|
|
||||||
|
@Column(name="PART_NAME_RDD")
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
public String partNameRdd;
|
||||||
|
|
||||||
|
@Column(name="QTY")
|
||||||
|
@ApiParam(value = "需求数量", example = "0")
|
||||||
|
public Double qty;
|
||||||
|
|
||||||
|
@Column(name="UNIT")
|
||||||
|
@ApiParam("单位")
|
||||||
|
public String unit;
|
||||||
|
|
||||||
|
@Column(name="SN")
|
||||||
|
@ApiParam("条码")
|
||||||
|
public String sn;
|
||||||
|
|
||||||
|
@Column(name="STATUS")
|
||||||
|
@ApiParam("状态")
|
||||||
|
public String status;
|
||||||
|
|
||||||
|
@Column(name="REMARK")
|
||||||
|
@ApiParam("备注")
|
||||||
|
public String reMark;
|
||||||
|
|
||||||
|
@Column(name="SRC")
|
||||||
|
@ApiParam("单据来源")
|
||||||
|
public String src;
|
||||||
|
|
||||||
|
@Column(name="ERP_WH_NO")
|
||||||
|
@ApiParam("默认收货库存地")
|
||||||
|
public String erpWhNo;
|
||||||
|
|
||||||
|
@Column(name="LINE_NO")
|
||||||
|
@ApiParam("生产线")
|
||||||
|
public String lineNo;
|
||||||
|
|
||||||
|
@Column(name="WH_NO")
|
||||||
|
@ApiParam("默认仓库")
|
||||||
|
public String whNo;
|
||||||
|
|
||||||
|
@Column(name="CUST_NO")
|
||||||
|
@ApiParam("客户编码")
|
||||||
|
public String custNo;
|
||||||
|
|
||||||
|
@Column(name="SHIPPING_FLAG")
|
||||||
|
@ApiParam("特殊发货标志")
|
||||||
|
public String shippingFlag;
|
||||||
|
|
||||||
|
@Column(name="LOT_NO")
|
||||||
|
@ApiParam("生产批次")
|
||||||
|
public String lotNo;
|
||||||
|
}
|
@ -0,0 +1,115 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
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 : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 15:58
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@Table(name="WMS_DOC_MOVEMENT_DETAILS")
|
||||||
|
@Api("库存移动单明细信息")
|
||||||
|
public class WmsMoveMentDetails extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name="ORDER_NO")
|
||||||
|
@ApiParam("单号")
|
||||||
|
public String orderNo;
|
||||||
|
|
||||||
|
@Column(name="ITEM")
|
||||||
|
@ApiParam("行号")
|
||||||
|
public String item;
|
||||||
|
|
||||||
|
@Column(name="PART_NO")
|
||||||
|
@ApiParam("物料编码")
|
||||||
|
public String partNo;
|
||||||
|
|
||||||
|
@Column(name="PART_NAME_RDD")
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
public String partNameRdd;
|
||||||
|
|
||||||
|
@Column(name="QTY")
|
||||||
|
@ApiParam(value = "需求数量", example = "0")
|
||||||
|
public Double qty;
|
||||||
|
|
||||||
|
@Column(name="UNIT")
|
||||||
|
@ApiParam("单位")
|
||||||
|
public String unit;
|
||||||
|
|
||||||
|
@Column(name="SRC_WH")
|
||||||
|
@ApiParam("发出库仓库")
|
||||||
|
public String srcWh;
|
||||||
|
|
||||||
|
@Column(name="DEST_WH")
|
||||||
|
@ApiParam("接收库仓库")
|
||||||
|
public String destWh;
|
||||||
|
|
||||||
|
@Column(name="PRINT_QTY")
|
||||||
|
@ApiParam("条码打印数量")
|
||||||
|
public String printQty;
|
||||||
|
|
||||||
|
@Column(name="FACT_QTY")
|
||||||
|
@ApiParam("操作完成数量")
|
||||||
|
public String factQty;
|
||||||
|
|
||||||
|
@Column(name="ZDATE")
|
||||||
|
@ApiParam("计划交货日期")
|
||||||
|
public String zDate;
|
||||||
|
|
||||||
|
@Column(name="ZTIME")
|
||||||
|
@ApiParam("计划交货时间")
|
||||||
|
public String zTime;
|
||||||
|
|
||||||
|
@Column(name="SRC_NO")
|
||||||
|
@ApiParam("源单号")
|
||||||
|
public String srcNo;
|
||||||
|
|
||||||
|
@Column(name="STATUS")
|
||||||
|
@ApiParam("状态")
|
||||||
|
public String status;
|
||||||
|
|
||||||
|
@Column(name="REMARK")
|
||||||
|
@ApiParam("备注")
|
||||||
|
public String reMark;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否免费:0=计费,1=免费
|
||||||
|
*/
|
||||||
|
@Column(name="IS_FREE")
|
||||||
|
@ApiParam(value = "是否免费", example = "1")
|
||||||
|
public Integer isFree;
|
||||||
|
|
||||||
|
@Column(name="PICK_QTY")
|
||||||
|
@ApiParam(value = "已配数量", example = "0")
|
||||||
|
public Double pickQty;
|
||||||
|
|
||||||
|
@Column(name="OUT_QTY")
|
||||||
|
@ApiParam(value = "已提交数量", example = "0")
|
||||||
|
public Double outQty;
|
||||||
|
|
||||||
|
@Column(name="INLINE_QTY")
|
||||||
|
@ApiParam(value = "已上线数量", example = "0")
|
||||||
|
public Double inLineQty;
|
||||||
|
|
||||||
|
@Column(name="REJECT_QTY")
|
||||||
|
@ApiParam(value = "退料数量", example = "0")
|
||||||
|
public Double rejectQty;
|
||||||
|
|
||||||
|
@Column(name="REJECT_POST_QTY")
|
||||||
|
@ApiParam(value = "退料提交数量", example = "0")
|
||||||
|
public Double rejectPostQty;
|
||||||
|
}
|
@ -0,0 +1,99 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
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 : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 15:58
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@Table(name="WMS_DOC_MOVEMENT_MASTER")
|
||||||
|
@Api("库存移动单主表信息")
|
||||||
|
public class WmsMoveMentMaster extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name="ORDER_NO")
|
||||||
|
@ApiParam("单号")
|
||||||
|
public String orderNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 移动类型:IN=入库,OUT=出库,MOVE=移库
|
||||||
|
*/
|
||||||
|
@Column(name="MOVE_TYPE")
|
||||||
|
@ApiParam("移动类型")
|
||||||
|
public String moveType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 业务类型:RC=收货,QC=质检,IN=入库,ZI=杂收,ZO=杂发,
|
||||||
|
* VJ=供应商退货,CJ=客户退货,WP=工单领料,WJ=工单退料,
|
||||||
|
* MI=移库入库,MO=移库出库,SO=发运
|
||||||
|
*/
|
||||||
|
@Column(name="TYPE")
|
||||||
|
@ApiParam("业务类型")
|
||||||
|
public String type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态:0=新建,10=处理中
|
||||||
|
* ,20=已完成,90=已关闭,91=已取消
|
||||||
|
*/
|
||||||
|
@Column(name="STATUS")
|
||||||
|
@ApiParam("状态")
|
||||||
|
public String status;
|
||||||
|
|
||||||
|
@Column(name="CUSTOMER_NO")
|
||||||
|
@ApiParam("客户编号")
|
||||||
|
public String customerNo;
|
||||||
|
|
||||||
|
@Column(name="VENDOR_NO")
|
||||||
|
@ApiParam("供应商编号")
|
||||||
|
public String vendorNo;
|
||||||
|
|
||||||
|
@Column(name="VERSION")
|
||||||
|
@ApiParam("版本")
|
||||||
|
public String version;
|
||||||
|
|
||||||
|
@Column(name="SRC")
|
||||||
|
@ApiParam("单据来源")
|
||||||
|
public String src;
|
||||||
|
|
||||||
|
@Column(name="SRC_NO")
|
||||||
|
@ApiParam("关联单据")
|
||||||
|
public String srcNo;
|
||||||
|
|
||||||
|
@Column(name="ERP_ORDERNO")
|
||||||
|
@ApiParam("ERP单号")
|
||||||
|
public String erpOrderNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单据类型:WO=工单配料
|
||||||
|
*/
|
||||||
|
@Column(name="ORDER_TYPE")
|
||||||
|
@ApiParam("单据类型")
|
||||||
|
public String orderType;
|
||||||
|
|
||||||
|
@Column(name="PART_NO")
|
||||||
|
@ApiParam("物料编码")
|
||||||
|
public String partNo;
|
||||||
|
|
||||||
|
@Column(name="PART_NAME_RDD")
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
public String partNameRdd;
|
||||||
|
|
||||||
|
@Column(name="QTY")
|
||||||
|
@ApiParam(value = "需求数量", example = "0")
|
||||||
|
public Double qty;
|
||||||
|
}
|
@ -0,0 +1,60 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.hibernate.annotations.DynamicInsert;
|
||||||
|
import org.hibernate.annotations.DynamicUpdate;
|
||||||
|
|
||||||
|
import javax.persistence.Column;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : PO订单主表
|
||||||
|
* @Reference :
|
||||||
|
* @Author : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 15:58
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@Table(name="WMS_DOC_PO_MASTER")
|
||||||
|
@Api("PO主表信息")
|
||||||
|
public class WmsPOMaster extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name="ORDER_NO")
|
||||||
|
@ApiParam("订单号")
|
||||||
|
public String orderNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单据类型:REG=原物料采购,
|
||||||
|
* SUB=委外采购,TAR=多角贸易采购,TAP=多角代采购
|
||||||
|
*/
|
||||||
|
@Column(name="TYPE")
|
||||||
|
@ApiParam("单据类型")
|
||||||
|
public String type;
|
||||||
|
|
||||||
|
@Column(name="STATUS")
|
||||||
|
@ApiParam("状态")
|
||||||
|
public String status;
|
||||||
|
|
||||||
|
@Column(name="VENDOR_NO")
|
||||||
|
@ApiParam("供应商编号")
|
||||||
|
public String vendorNo;
|
||||||
|
|
||||||
|
@Column(name="VERSION")
|
||||||
|
@ApiParam("版本")
|
||||||
|
public String version;
|
||||||
|
|
||||||
|
@Column(name="SRC")
|
||||||
|
@ApiParam("单据来源")
|
||||||
|
public String src;
|
||||||
|
|
||||||
|
@Column(name="IS_ASN")
|
||||||
|
@ApiParam("是否有ASN")
|
||||||
|
public String isAsn;
|
||||||
|
}
|
@ -0,0 +1,95 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.hibernate.annotations.DynamicInsert;
|
||||||
|
import org.hibernate.annotations.DynamicUpdate;
|
||||||
|
|
||||||
|
import javax.persistence.Column;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : PO订单明细信息
|
||||||
|
* @Reference :
|
||||||
|
* @Author : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 15:58
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@Table(name="WMS_DOC_PO_DETAILS")
|
||||||
|
@Api("PO订单明细信息")
|
||||||
|
public class WmsPOMasterDetails extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name="ORDER_NO")
|
||||||
|
@ApiParam("订单号")
|
||||||
|
public String orderNo;
|
||||||
|
|
||||||
|
@Column(name="ITEM")
|
||||||
|
@ApiParam("行号")
|
||||||
|
public String item;
|
||||||
|
|
||||||
|
@Column(name="PART_NO")
|
||||||
|
@ApiParam("物料编码")
|
||||||
|
public String partNo;
|
||||||
|
|
||||||
|
@Column(name="PART_NAME_RDD")
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
public String partNameRdd;
|
||||||
|
|
||||||
|
@Column(name="QTY")
|
||||||
|
@ApiParam(value = "需求数量", example = "0")
|
||||||
|
public Double qty;
|
||||||
|
|
||||||
|
@Column(name="PRINT_QTY")
|
||||||
|
@ApiParam("条码打印数量")
|
||||||
|
public String printQty;
|
||||||
|
|
||||||
|
@Column(name="RC_QTY")
|
||||||
|
@ApiParam("收货数量")
|
||||||
|
public String rcQty;
|
||||||
|
|
||||||
|
@Column(name="PASS_QTY")
|
||||||
|
@ApiParam("质检合格数量")
|
||||||
|
public String passQty;
|
||||||
|
|
||||||
|
@Column(name="NG_QTY")
|
||||||
|
@ApiParam("质检不合格数量")
|
||||||
|
public String ngQty;
|
||||||
|
|
||||||
|
@Column(name="UNIT")
|
||||||
|
@ApiParam("单位")
|
||||||
|
public String unit;
|
||||||
|
|
||||||
|
@Column(name="ZDATE")
|
||||||
|
@ApiParam("计划交货日期")
|
||||||
|
public String zDate;
|
||||||
|
|
||||||
|
@Column(name="ZTIME")
|
||||||
|
@ApiParam("计划交货时间")
|
||||||
|
public String zTime;
|
||||||
|
|
||||||
|
@Column(name="WH_NO")
|
||||||
|
@ApiParam("默认入库仓库代码")
|
||||||
|
public String whNo;
|
||||||
|
|
||||||
|
@Column(name="STATUS")
|
||||||
|
@ApiParam("状态")
|
||||||
|
public String status;
|
||||||
|
|
||||||
|
@Column(name="SNP")
|
||||||
|
@ApiParam("标准包装")
|
||||||
|
public String snp;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否免费:0=计费,1=免费
|
||||||
|
*/
|
||||||
|
@Column(name="IS_FREE")
|
||||||
|
@ApiParam(value = "是否免费", example = "1")
|
||||||
|
public Integer isFree;
|
||||||
|
}
|
@ -0,0 +1,72 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
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 : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 15:58
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@Table(name="WMS_DOC_SHIPPING")
|
||||||
|
@Api("产品发运信息")
|
||||||
|
public class WmsShopping extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name="ORDER_NO")
|
||||||
|
@ApiParam("发运单号")
|
||||||
|
public String orderNo;
|
||||||
|
|
||||||
|
@Column(name="PART_NO")
|
||||||
|
@ApiParam("物料编码")
|
||||||
|
public String partNo;
|
||||||
|
|
||||||
|
@Column(name="PART_NAME_RDD")
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
public String partNameRdd;
|
||||||
|
|
||||||
|
@Column(name="QTY")
|
||||||
|
@ApiParam(value = "需求数量", example = "0")
|
||||||
|
public Double qty;
|
||||||
|
|
||||||
|
@Column(name="UNIT")
|
||||||
|
@ApiParam("单位")
|
||||||
|
public String unit;
|
||||||
|
|
||||||
|
@Column(name="SN")
|
||||||
|
@ApiParam("条码")
|
||||||
|
public String sn;
|
||||||
|
|
||||||
|
@Column(name="STATUS")
|
||||||
|
@ApiParam("状态")
|
||||||
|
public String status;
|
||||||
|
|
||||||
|
@Column(name="REMARK")
|
||||||
|
@ApiParam("备注")
|
||||||
|
public String reMark;
|
||||||
|
|
||||||
|
@Column(name="SRC")
|
||||||
|
@ApiParam("单据来源")
|
||||||
|
public String src;
|
||||||
|
|
||||||
|
@Column(name="CUST_NO")
|
||||||
|
@ApiParam("客户编码")
|
||||||
|
public String custNo;
|
||||||
|
|
||||||
|
@Column(name="SHIPPING_FLAG")
|
||||||
|
@ApiParam("特殊发货标志")
|
||||||
|
public String shippingFlag;
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsASNMasterDetails;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 对象持久层仓用方法控制
|
||||||
|
* @Reference :
|
||||||
|
* @Author : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 9:47
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsASNMasterDetailsRepository extends BaseRepository<WmsASNMasterDetails, Long> {
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsASNMaster;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 对象持久层仓用方法控制
|
||||||
|
* @Reference :
|
||||||
|
* @Author : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 9:47
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsASNMasterRepository extends BaseRepository<WmsASNMaster, Long> {
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsFGInStock;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 对象持久层仓用方法控制
|
||||||
|
* @Reference :
|
||||||
|
* @Author : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 9:47
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsFGInStockRepository extends BaseRepository<WmsFGInStock, Long> {
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsMoveMentDetails;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 对象持久层仓用方法控制
|
||||||
|
* @Reference :
|
||||||
|
* @Author : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 9:47
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsMoveMentDetailsRepository extends BaseRepository<WmsMoveMentDetails, Long> {
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsMoveMentMaster;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 对象持久层仓用方法控制
|
||||||
|
* @Reference :
|
||||||
|
* @Author : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 9:47
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsMoveMentMasterRepository extends BaseRepository<WmsMoveMentMaster, Long> {
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsPOMasterDetails;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 对象持久层仓用方法控制
|
||||||
|
* @Reference :
|
||||||
|
* @Author : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 9:47
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsPOMasterDetailsRepository extends BaseRepository<WmsPOMasterDetails, Long> {
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsPOMaster;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 对象持久层仓用方法控制
|
||||||
|
* @Reference :
|
||||||
|
* @Author : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 9:47
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsPOMasterRepository extends BaseRepository<WmsPOMaster, Long> {
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsShopping;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 对象持久层仓用方法控制
|
||||||
|
* @Reference :
|
||||||
|
* @Author : silliter.yuan
|
||||||
|
* @CreateDate : 2018-11-06 9:47
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsShoppingRepository extends BaseRepository<WmsShopping, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue