Merge branch 'master' of http://git.estsh.com/i3-IMPP/i3plus-pojo
commit
3be0585879
@ -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 :客户信息表
|
||||
* @Reference :
|
||||
* @Author : hansen.ke
|
||||
* @CreateDate : 2018-11-06 17:16
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="BAS_CUSTOMER")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="客户信息表",description = "客户信息表")
|
||||
public class BasCustomer extends BaseBean {
|
||||
|
||||
@Column(name = "CUST_NO")
|
||||
@ApiParam(value = "客户编号")
|
||||
private String custNo;
|
||||
|
||||
@Column(name = "CUST_NAME")
|
||||
@ApiParam(value = "客户简称")
|
||||
private String custName;
|
||||
|
||||
@Column(name = "CUST_DESC")
|
||||
@ApiParam(value = "客户全称")
|
||||
private String custDesc;
|
||||
|
||||
@Column(name = "CUST_ADDR")
|
||||
@ApiParam(value = "客户地址")
|
||||
private String custAddr;
|
||||
|
||||
@Column(name = "CUST_OWNER")
|
||||
@ApiParam(value = "联系人")
|
||||
private String custOwner;
|
||||
|
||||
@Column(name = "CUST_EMAIL")
|
||||
@ApiParam(value = "邮箱")
|
||||
private String custEmail;
|
||||
|
||||
@Column(name = "CUST_TEL")
|
||||
@ApiParam(value = "联系人电话")
|
||||
private String custTel;
|
||||
|
||||
@Column(name = "CUST_FAX")
|
||||
@ApiParam(value = "传真")
|
||||
private String custFax;
|
||||
}
|
@ -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,61 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
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 : hansen.ke
|
||||
* @CreateDate : 2018-11-07 14:38
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_SHIPPING_FLAG")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="客户发往地信息表",description = "客户发往地信息表")
|
||||
public class WmsShippingFlag extends BaseBean {
|
||||
|
||||
@Column(name = "FLAG_NO")
|
||||
@ApiParam(value = "编号")
|
||||
private String flagNo;
|
||||
|
||||
@Column(name = "FLAG_NAME")
|
||||
@ApiParam(value = "简称")
|
||||
private String flagName;
|
||||
|
||||
@Column(name = "FLAG_DESC")
|
||||
@ApiParam(value = "全称")
|
||||
private String flagDesc;
|
||||
|
||||
@Column(name = "FLAG_ADDR")
|
||||
@ApiParam(value = "地址")
|
||||
private String flagAddr;
|
||||
|
||||
@Column(name = "FLAG_OWNER")
|
||||
@ApiParam(value = "联系人")
|
||||
private String flagOwner;
|
||||
|
||||
@Column(name = "FLAG_EMAIL")
|
||||
@ApiParam(value = "邮箱")
|
||||
private String flagEmail;
|
||||
|
||||
@Column(name = "FLAG_TEL")
|
||||
@ApiParam(value = "联系人电话")
|
||||
private String flagTel;
|
||||
|
||||
@Column(name = "FLAG_FAX")
|
||||
@ApiParam(value = "传真")
|
||||
private String flagFax;
|
||||
}
|
@ -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,77 @@
|
||||
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 : hansen.ke
|
||||
* @CreateDate : 2018-11-06 11:50
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_ZONES")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="存储区信息表",description = "存储区信息表")
|
||||
public class WmsZones extends BaseBean {
|
||||
|
||||
@Column(name = "WH_NO")
|
||||
@ApiParam(value = "仓库代码")
|
||||
private String whNo;
|
||||
|
||||
@Column(name = "AREA_NO")
|
||||
@ApiParam(value = "库存地代码")
|
||||
private String areaNo;
|
||||
|
||||
@Column(name = "ZONE_NO")
|
||||
@ApiParam(value = "存储区代码")
|
||||
private String zoneNo;
|
||||
|
||||
@Column(name = "ZONE_NAME")
|
||||
@ApiParam(value = "存储区名称")
|
||||
private String zoneName;
|
||||
|
||||
@Column(name = "IS_PM")
|
||||
@ApiParam(value = "零件级管控" , example = "2")
|
||||
private Integer isPm;
|
||||
|
||||
@Column(name = "IS_LM")
|
||||
@ApiParam(value = "批次级管控" , example = "2")
|
||||
private Integer isLm;
|
||||
|
||||
@Column(name = "IS_SN")
|
||||
@ApiParam(value = "条码级管控" , example = "1")
|
||||
private Integer isSn;
|
||||
|
||||
@Column(name = "IS_MIX")
|
||||
@ApiParam(value = "允许混淆" , example = "1")
|
||||
private Integer isMix;
|
||||
|
||||
@Column(name = "IS_SC")
|
||||
@ApiParam(value = "库容检查" , example = "1")
|
||||
private Integer isSc;
|
||||
|
||||
@Column(name = "STRATEGY")
|
||||
@ApiParam(value = "堆放策略")
|
||||
private String strategy;
|
||||
|
||||
@Column(name = "IS_NEGATIVE")
|
||||
@ApiParam(value = "允许负库存" , example = "1")
|
||||
private Integer isNegative;
|
||||
|
||||
@Column(name = "CHECK_FIFO")
|
||||
@ApiParam(value = "校验先进先出" , example = "1")
|
||||
private Integer checkFifo;
|
||||
|
||||
}
|
@ -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.BasCustomer;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :对象持久层仓用方法控制(客户信息)
|
||||
* @Reference :
|
||||
* @Author : hansen.ke
|
||||
* @CreateDate : 2018-11-06 17:27
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface BasCustomerRepositry extends BaseRepository<BasCustomer,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.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.WmsShippingFlag;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :对象持久层仓用方法控制(客户发往地信息)
|
||||
* @Reference :
|
||||
* @Author : hansen.ke
|
||||
* @CreateDate : 2018-11-07 14:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsShippingFlagRepositry extends BaseRepository<WmsShippingFlag, 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> {
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsZones;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :对象持久层仓用方法控制(存储区信息)
|
||||
* @Reference :
|
||||
* @Author : hansen.ke
|
||||
* @CreateDate : 2018-11-06 13:40
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsZonesRepositry extends BaseRepository<WmsZones ,Long> {
|
||||
|
||||
}
|
Loading…
Reference in New Issue