Merge remote-tracking branch 'origin/master'
# Conflicts: # modules/i3plus-pojo-platform/src/main/java/cn/estsh/i3plus/pojo/platform/repositorymongo/LogOperateRepository.javayun-zuoyi
commit
6aad727b3d
@ -1,5 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
package cn.estsh.i3plus.pojo.platform.bean;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
@ -1,19 +1,14 @@
|
||||
/*
|
||||
package cn.estsh.i3plus.pojo.platform.repository;
|
||||
package cn.estsh.i3plus.pojo.platform.repositorymongo;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseMongoRepository;
|
||||
import cn.estsh.i3plus.pojo.platform.bean.LogOperate;
|
||||
|
||||
*/
|
||||
/**
|
||||
* @Description : 操作日志表(使用Mongodb)
|
||||
* @Reference :
|
||||
* @Author : wei.peng
|
||||
* @Date : 2018-10-22 12:03:00.118
|
||||
* @Modify :
|
||||
**//*
|
||||
|
||||
|
||||
**/
|
||||
public interface LogOperateRepository extends BaseMongoRepository<LogOperate, Long> {
|
||||
}
|
||||
*/
|
@ -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;
|
||||
}
|
@ -1,52 +0,0 @@
|
||||
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 : alwaysfrin
|
||||
* @CreateDate : 2018-09-04 15:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="T_WMS_CUSTOMER_SENDTO")
|
||||
@Api("客户发往地信息")
|
||||
public class CustomerSendTo extends BaseBean {
|
||||
|
||||
@Column(name="CUSTOMER_ID")
|
||||
@ApiParam("客户端编号")
|
||||
public String customerId;
|
||||
|
||||
@Column(name="PART_ID")
|
||||
@ApiParam("零件编号")
|
||||
public String partId;
|
||||
|
||||
@Column(name="CUSTOMER_PARTNO")
|
||||
@ApiParam("客户零件号")
|
||||
public String customerPartNo;
|
||||
|
||||
@Column(name="ERP_PARTNO")
|
||||
@ApiParam("ERP零件号")
|
||||
public String ERPPartNo;
|
||||
|
||||
@Column(name="CUSTOMER_SENDTO_CODE")
|
||||
@ApiParam("客户发往地代码")
|
||||
public String customerSendToCode;
|
||||
|
||||
@Column(name="CUSTOMER_SENDTO_NAME")
|
||||
@ApiParam("客户发往地名称")
|
||||
public String customerSendToName;
|
||||
}
|
@ -1,41 +0,0 @@
|
||||
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 : amy
|
||||
* @CreateDate : 2018-11-01 11:45
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="T_INTERFACE_DEVICE")
|
||||
@Api("接口驱动类信息")
|
||||
public class InterfaceDevice extends BaseBean {
|
||||
|
||||
@Column(name="device_name")
|
||||
@ApiParam("驱动名称")
|
||||
private String deviceName;
|
||||
|
||||
@Column(name="device_classname")
|
||||
@ApiParam("驱动类名称")
|
||||
private String deviceClassName;
|
||||
|
||||
@Column(name="status")
|
||||
@ApiParam("状态 【0-禁用 1-正常】")
|
||||
private Integer status;
|
||||
|
||||
}
|
@ -1,100 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.wms.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 org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 接口类型信息实体
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2018-11-01 11:56
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="T_INTERFACE_TYPE")
|
||||
@Api("接口类型信息")
|
||||
public class InterfaceType extends BaseBean {
|
||||
|
||||
@Column(name="tp_id")
|
||||
@ApiParam("接口编号")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long tpId;
|
||||
|
||||
@Column(name="tp_typ")
|
||||
@ApiParam("接口类型")
|
||||
private String tpTyp;
|
||||
|
||||
@Column(name="pb_no")
|
||||
@ApiParam("发布方编码")
|
||||
private String pbNo;
|
||||
|
||||
@Column(name="tp_no")
|
||||
@ApiParam("接口编码")
|
||||
private String tpNo;
|
||||
|
||||
@Column(name="tp_desc")
|
||||
@ApiParam("接口主题描述")
|
||||
private String tpDesc;
|
||||
|
||||
@Column(name="mes_tab")
|
||||
@ApiParam("接口业务表")
|
||||
private String mesTab;
|
||||
|
||||
@Column(name="mes_group")
|
||||
@ApiParam("业务表的分组条件")
|
||||
private String mesGroup;
|
||||
|
||||
@Column(name="mes_pk")
|
||||
@ApiParam("业务表主键")
|
||||
private String mesPk;
|
||||
|
||||
@Column(name="act_type")
|
||||
@ApiParam("业务类型")
|
||||
private Integer actType;
|
||||
|
||||
@Column(name="act_desc")
|
||||
@ApiParam("业务描述")
|
||||
private String actDesc;
|
||||
|
||||
@Column(name="device_id")
|
||||
@ApiParam("驱动类编号")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long deviceId;
|
||||
|
||||
@Column(name="request_url")
|
||||
@ApiParam("服务器请求路径")
|
||||
private String requestUrl;
|
||||
|
||||
@Column(name="cfile_path")
|
||||
@ApiParam("客户文件路径")
|
||||
private String cfilePath;
|
||||
|
||||
public Long getTpId() {
|
||||
if(tpId != null) {
|
||||
return tpId.longValue();
|
||||
}else{
|
||||
return tpId;
|
||||
}
|
||||
}
|
||||
|
||||
public Long getDeviceId() {
|
||||
if(deviceId != null) {
|
||||
return deviceId.longValue();
|
||||
}else{
|
||||
return deviceId;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,60 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.wms.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 org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 工厂仓库
|
||||
* @Reference :
|
||||
* @Author : alwaysfrin
|
||||
* @CreateDate : 2018-09-04 15:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="WH_STOCK_AREA")
|
||||
@Api("仓库区域")
|
||||
public class StockArea extends BaseBean {
|
||||
|
||||
@Column(name="AREA_CODE")
|
||||
@ApiParam("仓库区域代码")
|
||||
public String areaCode;
|
||||
|
||||
@Column(name="AREA_NAME")
|
||||
@ApiParam("仓库区域名称")
|
||||
public String areaName;
|
||||
|
||||
@Column(name="WH_ID")
|
||||
@ApiParam(value = "仓库编号", example = "-1")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
public Long whId;
|
||||
|
||||
@Column(name="WH_CODE_RDD")
|
||||
@ApiParam("仓库代码")
|
||||
public String whCodeRdd;
|
||||
|
||||
@Column(name="WH_NAME_RDD")
|
||||
@ApiParam("仓库名称")
|
||||
public String whNameRdd;
|
||||
|
||||
public Long getWhId() {
|
||||
if(whId != null) {
|
||||
return whId.longValue();
|
||||
}else{
|
||||
return whId;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -1,59 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.wms.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 org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 库位
|
||||
* @Reference :
|
||||
* @Author : alwaysfrin
|
||||
* @CreateDate : 2018-09-04 15:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="WH_STOCK_LOC")
|
||||
@Api("仓库库位")
|
||||
public class StockLocation extends BaseBean {
|
||||
|
||||
@Column(name="LOC_CODE")
|
||||
@ApiParam("仓库库位代码")
|
||||
public String locCode;
|
||||
|
||||
@Column(name="LOC_NAME")
|
||||
@ApiParam("仓库库位名称")
|
||||
public String locName;
|
||||
|
||||
@Column(name="AREA_ID")
|
||||
@ApiParam(value = "库区编号", example = "-1")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
public Long areaId;
|
||||
|
||||
@Column(name="AREA_CODE_RDD")
|
||||
@ApiParam("库区代码")
|
||||
public String areaCodeRdd;
|
||||
|
||||
@Column(name="AREA_NAME_RDD")
|
||||
@ApiParam("库区名称")
|
||||
public String areaNameRdd;
|
||||
|
||||
public Long getAreaId() {
|
||||
if(areaId != null) {
|
||||
return areaId.longValue();
|
||||
}else{
|
||||
return areaId;
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,64 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 状态:0=新建,10=收货中,20=收货完成,
|
||||
* 30=入库中,40=入库完成,90=已关闭,91=已取消
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "0")
|
||||
public Integer 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,106 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 状态:N=正常,C=行取消,R=已收货
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "1")
|
||||
public Integer 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,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 : silliter.yuan
|
||||
* @CreateDate : 2018-11-06 17:16
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_AREA_OWNER")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="责任区域分配信息",description = "责任区域分配信息")
|
||||
public class WmsAreaOwner extends BaseBean {
|
||||
|
||||
@Column(name = "WH_NO")
|
||||
@ApiParam(value = "仓库代码")
|
||||
private String whNo;
|
||||
|
||||
@Column(name = "ZONE_NO")
|
||||
@ApiParam(value = "存储区编号")
|
||||
private String zoneNo;
|
||||
|
||||
@Column(name = "LOCATE_NO")
|
||||
@ApiParam(value = "库位编号")
|
||||
private String locateNo;
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam("物料编码")
|
||||
public String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
public String partNameRdd;
|
||||
|
||||
@Column(name = "VENDOR_NO")
|
||||
@ApiParam(value = "供应商编码")
|
||||
private String vendorNo;
|
||||
|
||||
@Column(name = "OWNER_USER_NO")
|
||||
@ApiParam(value = "负责人")
|
||||
private String ownerUserNo;
|
||||
|
||||
@Column(name = "IS_PRE_ASSIGN")
|
||||
@ApiParam(value = "是否预分配人员")
|
||||
private String isPreAssign;
|
||||
}
|
@ -0,0 +1,79 @@
|
||||
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_CS_FACTTRANS")
|
||||
@Api("盘点实盘信息")
|
||||
public class WmsCSFactTrans extends BaseBean {
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
public String orderNo;
|
||||
|
||||
@Column(name="WH_NO")
|
||||
@ApiParam("仓库代码")
|
||||
public String whNo;
|
||||
|
||||
@Column(name="ZONE_NO")
|
||||
@ApiParam("存储区编号")
|
||||
public String zoneNo;
|
||||
|
||||
@Column(name="LOCATE_NO")
|
||||
@ApiParam("库位编号")
|
||||
public String locateNo;
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam("物料编码")
|
||||
public String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
public String partNameRdd;
|
||||
|
||||
@Column(name="SN")
|
||||
@ApiParam("条码")
|
||||
public String sn;
|
||||
|
||||
@Column(name="QTY")
|
||||
@ApiParam(value = "库存数量", example = "0")
|
||||
public Double qty;
|
||||
|
||||
@Column(name="UNIT")
|
||||
@ApiParam("单位")
|
||||
public String unit;
|
||||
|
||||
@Column(name="FACT_QTY")
|
||||
@ApiParam(value = "实盘数量", example = "0")
|
||||
public Double factQty;
|
||||
|
||||
/**
|
||||
* 状态:0=创建,10=已处理
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "1")
|
||||
public Integer status;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam(value = "备注")
|
||||
public String reMark;
|
||||
}
|
@ -0,0 +1,89 @@
|
||||
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_CS_DETAILS")
|
||||
@Api("盘点单冻结信息")
|
||||
public class WmsCSOrderDetails extends BaseBean {
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
public String orderNo;
|
||||
|
||||
@Column(name="WH_NO")
|
||||
@ApiParam("仓库代码")
|
||||
public String whNo;
|
||||
|
||||
@Column(name="ZONE_NO")
|
||||
@ApiParam("存储区编号")
|
||||
public String zoneNo;
|
||||
|
||||
@Column(name="LOCATE_NO")
|
||||
@ApiParam("库位编号")
|
||||
public String locateNo;
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam("物料编码")
|
||||
public String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
public String partNameRdd;
|
||||
|
||||
@Column(name="SN")
|
||||
@ApiParam("条码")
|
||||
public String sn;
|
||||
|
||||
@Column(name="QTY")
|
||||
@ApiParam(value = "需求数量", example = "0")
|
||||
public Double qty;
|
||||
|
||||
@Column(name="UNIT")
|
||||
@ApiParam("单位")
|
||||
public String unit;
|
||||
|
||||
/**
|
||||
* 质检状态:0=未质检,10=质检中,20=质检合格,
|
||||
* 30=质检不合格,40=已退货
|
||||
*/
|
||||
@Column(name="QC_STATUS")
|
||||
@ApiParam(value = "质检状态", example = "1")
|
||||
public Integer qcStatus;
|
||||
|
||||
/**
|
||||
* 条码状态:0=创建,10=已收货,20=已质检,
|
||||
* 30=已入库,40=待出库,50=已出库,
|
||||
* 60=在途,70=已隔离,80=破包,90=冻结,100=作废
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "条码状态", example = "1")
|
||||
public Integer status;
|
||||
|
||||
/**
|
||||
* 处理状态:0=已创建,5=已盘,10=已冻结
|
||||
* ,20=已解冻,30=取消冻结
|
||||
*/
|
||||
@Column(name="TRANS_STATUS")
|
||||
@ApiParam(value = "处理状态", example = "1")
|
||||
public Integer transStatus;
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
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_CS_ORDER")
|
||||
@Api("盘点单主表信息")
|
||||
public class WmsCSOrderMaster extends BaseBean {
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
public String orderNo;
|
||||
|
||||
/**
|
||||
* 单据类型:10=日常盘点,20=月度盘点,
|
||||
* 30=季度盘点,40=年度盘点
|
||||
*/
|
||||
@Column(name="ORDER_TYPE")
|
||||
@ApiParam("单据类型")
|
||||
public String orderType;
|
||||
|
||||
@Column(name="STATUS")
|
||||
@ApiParam("状态")
|
||||
public String status;
|
||||
|
||||
@Column(name="PERSENT")
|
||||
@ApiParam("盘点进度")
|
||||
public String persent;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam("备注")
|
||||
public String reMark;
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
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_CS_PART")
|
||||
@Api("盘点区物料信息")
|
||||
public class WmsCSPart 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;
|
||||
}
|
@ -0,0 +1,64 @@
|
||||
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_IB_CHECK_FACT")
|
||||
@Api("抽点记录信息")
|
||||
public class WmsCheckFactRecord extends BaseBean {
|
||||
|
||||
@Column(name="PO_NO")
|
||||
@ApiParam("采购单号")
|
||||
public String poNo;
|
||||
|
||||
@Column(name="ASN_NO")
|
||||
@ApiParam("ANS单号")
|
||||
public String asnNo;
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam("物料编码")
|
||||
public String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
public String partNameRdd;
|
||||
|
||||
@Column(name="VENDOR_NO")
|
||||
@ApiParam("供应商编号")
|
||||
public String vendorNo;
|
||||
|
||||
@Column(name="SN")
|
||||
@ApiParam("条码")
|
||||
public String sn;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam("备注")
|
||||
public String reMark;
|
||||
|
||||
@Column(name="PLAN_QTY")
|
||||
@ApiParam(value = "应收数量", example = "0")
|
||||
public Double planQty;
|
||||
|
||||
@Column(name="CHECK_QTY")
|
||||
@ApiParam(value = "抽点数量", example = "0")
|
||||
public Double checkQty;
|
||||
}
|
@ -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 : 产品入库信息
|
||||
* @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;
|
||||
|
||||
/**
|
||||
* 状态:0=新建,10=已处理,20=处理出错
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "0")
|
||||
public Integer 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,58 @@
|
||||
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 io.swagger.models.auth.In;
|
||||
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 : jimmy.zeng
|
||||
* @CreateDate : 2018-11-07 10:55
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_IB_CHECK_PLAN")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="抽点比例表",description = "抽点比例表")
|
||||
public class WmsIbCheckPlan extends BaseBean{
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam(value ="物料编码")
|
||||
private String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam(value ="物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@Column(name="START_DATE")
|
||||
@ApiParam(value ="开始日期")
|
||||
private String startDate;
|
||||
|
||||
@Column(name="END_DATE")
|
||||
@ApiParam(value ="结束日期")
|
||||
private String endDate;
|
||||
|
||||
@Column(name="LOT_QTY")
|
||||
@ApiParam(value ="样本数量", example = "-1")
|
||||
private Integer lotQty;
|
||||
|
||||
@Column(name="COUNTER")
|
||||
@ApiParam(value ="已收货件数", example = "-1")
|
||||
private Integer counter;
|
||||
|
||||
@Column(name="CHECK_COUNTER")
|
||||
@ApiParam(value ="已抽点件数", example = "-1")
|
||||
private Integer checkCounter;
|
||||
|
||||
}
|
@ -0,0 +1,81 @@
|
||||
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 : jimmy.zeng
|
||||
* @CreateDate : 2018-11-07 10:35
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_LOCATE")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="库位表",description = "库位表")
|
||||
public class WmsLocate extends BaseBean {
|
||||
|
||||
@Column(name="LOCATE_NO")
|
||||
@ApiParam(value ="库位代码")
|
||||
private String locateNo;
|
||||
|
||||
@Column(name="LOCATE_NAME")
|
||||
@ApiParam(value ="库位名称")
|
||||
private String locateName;
|
||||
|
||||
@Column(name="LOCATE_TYPE")
|
||||
@ApiParam(value ="库位类型")
|
||||
private String locateType;
|
||||
|
||||
@Column(name="WH_NO")
|
||||
@ApiParam(value ="仓库代码")
|
||||
private String whNo;
|
||||
|
||||
@Column(name="ZONE_NO")
|
||||
@ApiParam(value ="存储区代码")
|
||||
private String zoneNo;
|
||||
|
||||
@Column(name="X")
|
||||
@ApiParam(value ="X", example = "-1")
|
||||
private Integer x;
|
||||
|
||||
@Column(name="Y")
|
||||
@ApiParam(value ="Y", example = "-1")
|
||||
private Integer y;
|
||||
|
||||
@Column(name="Z")
|
||||
@ApiParam(value ="Z", example = "-1")
|
||||
private Integer z;
|
||||
|
||||
@Column(name="SEQ")
|
||||
@ApiParam(value ="序号", example = "-1")
|
||||
private Integer seq;
|
||||
|
||||
@Column(name="IS_EMPTY")
|
||||
@ApiParam(value ="是否空库位", example = "-1")
|
||||
private Integer isEmpty;
|
||||
|
||||
@Column(name="MAX_PACKAGE_QTY")
|
||||
@ApiParam(value ="最大包装数量", example = "-1")
|
||||
private Integer maxPackageQty;
|
||||
|
||||
@Column(name="MAX_PART_QTY")
|
||||
@ApiParam(value ="最大零件数量", example = "-1")
|
||||
private Integer maxPartQty;
|
||||
|
||||
@Column(name="STOCK_UNIT")
|
||||
@ApiParam(value ="存放单位")
|
||||
private String stockUnit;
|
||||
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
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 : jimmy.zeng
|
||||
* @CreateDate : 2018-11-07 10:51
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_LOCATE_PART")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="库位物料表",description = "库位物料表")
|
||||
public class WmsLocatePart extends BaseBean{
|
||||
|
||||
@Column(name="LOCATE_NO")
|
||||
@ApiParam(value ="库位代码")
|
||||
private String locateNo;
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam(value ="物料编码")
|
||||
private String partNo;
|
||||
|
||||
@Column(name="PART_NAME")
|
||||
@ApiParam(value ="物料名称")
|
||||
private String partName;
|
||||
}
|
@ -0,0 +1,86 @@
|
||||
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_MOVE_DETAILS")
|
||||
@Api("库存移动单明细信息")
|
||||
public class WmsMoveDetails 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="CUST_NO")
|
||||
@ApiParam("客户编号")
|
||||
public String custNo;
|
||||
|
||||
@Column(name="QTY")
|
||||
@ApiParam(value = "需求数量", example = "0")
|
||||
public Double qty;
|
||||
|
||||
@Column(name="TRANS_QTY")
|
||||
@ApiParam(value = "处理数量", example = "0")
|
||||
public Double transQty;
|
||||
|
||||
@Column(name="UNIT")
|
||||
@ApiParam("单位")
|
||||
public String unit;
|
||||
|
||||
@Column(name="WH_NO")
|
||||
@ApiParam("仓库代码")
|
||||
public String whNo;
|
||||
|
||||
@Column(name="ZONE_NO")
|
||||
@ApiParam("存储区代码")
|
||||
public String zoneNo;
|
||||
|
||||
@Column(name="LOCATE_NO")
|
||||
@ApiParam("库位代码")
|
||||
public String locateNo;
|
||||
|
||||
/**
|
||||
* 状态:0=创建,5=待处理,10=已处理
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "0")
|
||||
public Integer status;
|
||||
|
||||
/**
|
||||
* ASN,PO,SO
|
||||
*/
|
||||
@Column(name="REF_TYPE")
|
||||
@ApiParam("关联单据类型")
|
||||
public String refType;
|
||||
|
||||
@Column(name="REF_SRC")
|
||||
@ApiParam("关联单号")
|
||||
public String refSrc;
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
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_MOVE_MASTER")
|
||||
@Api("库存移动单主表信息")
|
||||
public class WmsMoveMaster extends BaseBean {
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
public String orderNo;
|
||||
|
||||
/**
|
||||
* 业务类型:RC=收货,QC=质检,IN=入库,ZI=杂收,ZO=杂发,
|
||||
* VJ=供应商退货,CJ=客户退货,WP=工单领料,WJ=工单退料,
|
||||
* MI=移库入库,MO=移库出库,SO=发运
|
||||
*/
|
||||
@Column(name="TYPE")
|
||||
@ApiParam("业务类型")
|
||||
public String type;
|
||||
|
||||
/**
|
||||
* 状态:0=创建,5=待处理,10=已处理
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "0")
|
||||
public Integer status;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam("备注")
|
||||
public String reMark;
|
||||
}
|
@ -0,0 +1,118 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 状态:N=正常,C=行取消
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "1")
|
||||
public Integer 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(value = "状态", example = "0")
|
||||
public Integer 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,67 @@
|
||||
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_MOVE_SN")
|
||||
@Api("库存移动单条码信息")
|
||||
public class WmsMoveSn 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;
|
||||
|
||||
/**
|
||||
* 状态:0=创建,10=已处理
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "0")
|
||||
public Integer status;
|
||||
|
||||
@Column(name="SN")
|
||||
@ApiParam("条码")
|
||||
public String sn;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam("备注")
|
||||
public String reMark;
|
||||
|
||||
@Column(name="LOT_NO")
|
||||
@ApiParam("批次编号")
|
||||
public String lotNo;
|
||||
|
||||
@Column(name="PACKAGE_NO")
|
||||
@ApiParam("容器编号")
|
||||
public String packAgeNo;
|
||||
}
|
@ -0,0 +1,64 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 状态:0=新建,10=收货中,20=收货完成,
|
||||
* 30=入库中,40=入库完成,90=已关闭,91=已取消
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "0")
|
||||
public Integer 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,98 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 状态:N=正常,C=行取消
|
||||
*/
|
||||
@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,44 @@
|
||||
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_PACKAGE")
|
||||
@Api("物理包装信息")
|
||||
public class WmsPackage extends BaseBean {
|
||||
|
||||
@Column(name="PACKAGE_NO")
|
||||
@ApiParam("包装编号")
|
||||
public String packageNo;
|
||||
|
||||
@Column(name="PACKAGE_TYPE_ID")
|
||||
@ApiParam(value = "包装类型", example = "1")
|
||||
public Integer packTypeId;
|
||||
|
||||
@Column(name="PARENT_PACKAGE_NO")
|
||||
@ApiParam("上级包装编号")
|
||||
public String parentPackageNo;
|
||||
|
||||
@Column(name="SN")
|
||||
@ApiParam("条码")
|
||||
public String sn;
|
||||
}
|
@ -0,0 +1,109 @@
|
||||
package cn.estsh.i3plus.pojo.wms.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 org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : dragon.xu
|
||||
* @CreateDate : 2018-11-07 16:06
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name = "WMS_PART")
|
||||
@Api("物料表")
|
||||
public class WmsPart extends BaseBean {
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam(value ="物料编码")
|
||||
private String partNo;
|
||||
|
||||
@Column(name="PART_NAME")
|
||||
@ApiParam(value ="物料名称")
|
||||
private String partName;
|
||||
|
||||
@Column(name="PART_SPEC")
|
||||
@ApiParam(value ="物料规格")
|
||||
private String partSpec;
|
||||
|
||||
@Column(name="PART_TYPE")
|
||||
@ApiParam(value ="物料类型")
|
||||
private String partType;
|
||||
|
||||
@Column(name="PART_TYPE_DESC")
|
||||
@ApiParam(value ="物料类型描述")
|
||||
private String partTypeDesc;
|
||||
|
||||
@Column(name="GRAPHI_NO")
|
||||
@ApiParam(value ="图号")
|
||||
private String graphiNo;
|
||||
|
||||
@Column(name="VERSION")
|
||||
@ApiParam(value ="版本")
|
||||
private String version;
|
||||
|
||||
@Column(name="COLOR")
|
||||
@ApiParam(value ="颜色")
|
||||
private String color;
|
||||
|
||||
@Column(name="STOCK_UNIT")
|
||||
@ApiParam(value ="库存单位")
|
||||
private String stockUnit;
|
||||
|
||||
@Column(name="ABC")
|
||||
@ApiParam(value ="分类")
|
||||
private String ABC;
|
||||
|
||||
@Column(name="BUY_UNIT")
|
||||
@ApiParam(value ="采购单位")
|
||||
private String buyUnit;
|
||||
|
||||
@Column(name="BU2SU")
|
||||
@ApiParam(value ="换算率1",example = "1")
|
||||
private Double bu2su;
|
||||
|
||||
@Column(name="PRICE_UNIT")
|
||||
@ApiParam(value ="计价单位")
|
||||
private String priceUnit;
|
||||
|
||||
@Column(name="PU2SU")
|
||||
@ApiParam(value ="换算率2",example = "1")
|
||||
private Double pu2su;
|
||||
|
||||
@Column(name="SNP")
|
||||
@ApiParam(value ="标准包装",example = "1")
|
||||
private Double snp;
|
||||
|
||||
@Column(name="IQC")
|
||||
@ApiParam(value ="收货检验否",example = "1")
|
||||
private Integer iqc;
|
||||
|
||||
@Column(name="MIN")
|
||||
@ApiParam(value ="最低库存",example = "1")
|
||||
private Double min;
|
||||
|
||||
@Column(name="MAX")
|
||||
@ApiParam(value ="最高库存",example = "1")
|
||||
private Double max;
|
||||
|
||||
@Column(name="PART_GROUP")
|
||||
@ApiParam(value ="物料组")
|
||||
private String partGroup;
|
||||
|
||||
@Column(name="LOT_CHECK_RULE")
|
||||
@ApiParam(value ="批次校验规则")
|
||||
private String lotCheckRule;
|
||||
}
|
@ -0,0 +1,81 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
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_QC_DETAILS")
|
||||
@Api("质检单明细信息")
|
||||
public class WmsQCDetails extends BaseBean {
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
public String orderNo;
|
||||
|
||||
@Column(name="ITEM")
|
||||
@ApiParam("行号")
|
||||
public String item;
|
||||
|
||||
/**
|
||||
* 状态:N=正常,C=行取消
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "1")
|
||||
public Integer status;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam("备注")
|
||||
public String reMark;
|
||||
|
||||
@Column(name="PLAN_QTY")
|
||||
@ApiParam(value = "应检数量", example = "0")
|
||||
public Double planQty;
|
||||
|
||||
@Column(name="FACT_QTY")
|
||||
@ApiParam(value = "实检数量", example = "0")
|
||||
public Double factQty;
|
||||
|
||||
@Column(name="REJECT_QTY")
|
||||
@ApiParam(value = "不合格数量", example = "0")
|
||||
public Double rejectQty;
|
||||
|
||||
@Column(name="QC_USER")
|
||||
@ApiParam("检验员")
|
||||
public String qcUser;
|
||||
|
||||
@Column(name="QC_TIME")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@ApiParam(value="检验时间",example = "2000-01-01 01:00:00")
|
||||
public String qcTime;
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam("物料编码")
|
||||
public String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
public String partNameRdd;
|
||||
|
||||
@Column(name="UNIT")
|
||||
@ApiParam("单位")
|
||||
public String unit;
|
||||
}
|
@ -0,0 +1,75 @@
|
||||
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_QC_MASTER")
|
||||
@Api("质检单主表信息")
|
||||
public class WmsQCMaster extends BaseBean {
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
public String orderNo;
|
||||
|
||||
/**
|
||||
* 业务类型:IQC=进料检验,IPQC=在线检验,
|
||||
* FQC=成品检验,OQC=出货检验
|
||||
*/
|
||||
@Column(name="TYPE")
|
||||
@ApiParam("业务类型")
|
||||
public String type;
|
||||
|
||||
/**
|
||||
* 状态:0=新建,5=待处理,10=已完成,90=已关闭,91=已取消
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "0")
|
||||
public Integer status;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam("备注")
|
||||
public String reMark;
|
||||
|
||||
@Column(name="CUSTOMER_NO")
|
||||
@ApiParam("客户编号")
|
||||
public String customerNo;
|
||||
|
||||
@Column(name="VENDOR_NO")
|
||||
@ApiParam("供应商编号")
|
||||
public String vendorNo;
|
||||
|
||||
@Column(name="VERSION")
|
||||
@ApiParam(value = "版本", example = "1")
|
||||
public Integer version;
|
||||
|
||||
@Column(name="PO_NO")
|
||||
@ApiParam("采购单号")
|
||||
public String poNo;
|
||||
|
||||
@Column(name="ASN_NO")
|
||||
@ApiParam("ASN单号")
|
||||
public String asnNo;
|
||||
|
||||
@Column(name="IB_NO")
|
||||
@ApiParam("入库单号")
|
||||
public String ibNo;
|
||||
}
|
@ -0,0 +1,67 @@
|
||||
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_QC_TRANS")
|
||||
@Api("质检单操作明细信息")
|
||||
public class WmsQCTrans extends BaseBean {
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
public String orderNo;
|
||||
|
||||
@Column(name="ITEM")
|
||||
@ApiParam("行号")
|
||||
public String item;
|
||||
|
||||
/**
|
||||
* 状态:0=创建,10=已处理
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "0")
|
||||
public Integer status;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam("备注")
|
||||
public String reMark;
|
||||
|
||||
@Column(name="PASS_QTY")
|
||||
@ApiParam("合格数量")
|
||||
public String passQty;
|
||||
|
||||
@Column(name="REJECT_QTY")
|
||||
@ApiParam("不合格数量")
|
||||
public String rejectQty;
|
||||
|
||||
@Column(name="UNIT")
|
||||
@ApiParam("单位")
|
||||
public String unit;
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam("物料编码")
|
||||
public String partNo;
|
||||
|
||||
@Column(name="SN")
|
||||
@ApiParam("条码")
|
||||
public String sn;
|
||||
}
|
@ -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,75 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 状态:0=新建,10=已处理,20=处理出错
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "0")
|
||||
public Integer 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,59 @@
|
||||
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_SN_PRINT")
|
||||
@Api("待打印信息")
|
||||
public class WmsSnPrint extends BaseBean {
|
||||
|
||||
@Column(name="SRC_TYPE")
|
||||
@ApiParam("来源单据类型")
|
||||
public String srcType;
|
||||
|
||||
@Column(name="SRC_NO")
|
||||
@ApiParam("来源单据编号")
|
||||
public String srcNo;
|
||||
|
||||
@Column(name="PRINT_CONTEXT")
|
||||
@ApiParam("打印内容")
|
||||
public String printContext;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam("备注")
|
||||
public String reMark;
|
||||
|
||||
/**
|
||||
* 状态:0=创建,5=待处理,10=已处理
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "0")
|
||||
public Integer status;
|
||||
|
||||
@Column(name="PRINT_TEMPLET")
|
||||
@ApiParam("打印模板")
|
||||
public String printTemplet;
|
||||
|
||||
@Column(name="PRINT_MACHINE")
|
||||
@ApiParam("打印机")
|
||||
public String printMachine;
|
||||
}
|
@ -0,0 +1,51 @@
|
||||
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_TASK")
|
||||
@Api("ASN主表信息")
|
||||
public class WmsTaskInfo extends BaseBean {
|
||||
|
||||
@Column(name="MOVE_NO")
|
||||
@ApiParam("移动单号")
|
||||
public String moveNo;
|
||||
|
||||
@Column(name="USER_NO")
|
||||
@ApiParam("作业人员")
|
||||
public String userNo;
|
||||
|
||||
@Column(name="OP_TYPE_CODE")
|
||||
@ApiParam("作业类型")
|
||||
public String opTypeCode;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam("备注")
|
||||
public String reMark;
|
||||
|
||||
/**
|
||||
* 状态:0=创建,5=待处理,10=已处理
|
||||
*/
|
||||
@Column(name="STATUS")
|
||||
@ApiParam(value = "状态", example = "0")
|
||||
public Integer status;
|
||||
}
|
@ -0,0 +1,57 @@
|
||||
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_TMP_ORDER_LOCK")
|
||||
@Api("盘点单主表信息")
|
||||
public class WmsTempOrderLock extends BaseBean {
|
||||
|
||||
/**
|
||||
* 业务类型:RC=收货,QC=质检,IN=入库,ZI=杂收,ZO=杂发,
|
||||
* VJ=供应商退货,CJ=客户退货,WP=工单领料,WJ=工单退料,
|
||||
* MI=移库入库,MO=移库出库,SO=发运
|
||||
*/
|
||||
@Column(name="BIZ_TYPE")
|
||||
@ApiParam("业务类型")
|
||||
public String bizType;
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
public String orderNo;
|
||||
|
||||
@Column(name="USER_NO")
|
||||
@ApiParam("员工编号")
|
||||
public String userNo;
|
||||
|
||||
@Column(name="IS_RUNNING")
|
||||
@ApiParam("操作中")
|
||||
public String isRunning;
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam("物料编码")
|
||||
public String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
public String partNameRdd;
|
||||
}
|
@ -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> {
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.FactoryStore;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WareHouse;
|
||||
import org.springframework.data.jpa.repository.Query;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : 对象持久层仓用方法控制
|
||||
* @Reference :
|
||||
* @Author : alwaysfrin
|
||||
* @CreateDate : 2018-09-13 9:47
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface FactoryStoreRepository extends BaseRepository<FactoryStore, Long> {
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.StockArea;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsTransType;
|
||||
|
||||
/**
|
||||
* @Description : 库区表
|
||||
* @Reference :
|
||||
* @Author : jessica.chen
|
||||
* @CreateDate : 2018-11-04 12:02
|
||||
* @Modify:
|
||||
**/
|
||||
public interface StockAreaRepository extends BaseRepository<StockArea, Long> {
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.StockArea;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.StockLocation;
|
||||
|
||||
/**
|
||||
* @Description : 库位表
|
||||
* @Reference :
|
||||
* @Author : jessica.chen
|
||||
* @CreateDate : 2018-11-04 14:33
|
||||
* @Modify:
|
||||
**/
|
||||
public interface StockLocationRepository extends BaseRepository<StockLocation, 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> {
|
||||
}
|
@ -1,16 +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.InterfaceDevice;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsASNMaster;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 对象持久层仓用方法控制
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2018-11-01 15:13
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2018-11-06 9:47
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface InterfaceDeviceRepository extends BaseRepository<InterfaceDevice, Long> {
|
||||
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,14 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsIbCheckPlan;
|
||||
|
||||
/**
|
||||
* @Description : 抽点比例表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-07 11:17
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsIbCheckPlanRepository extends BaseRepository<WmsIbCheckPlan, Long> {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsLocatePart;
|
||||
|
||||
/**
|
||||
* @Description : 库位物料表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-07 11:16
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsLocatePartRepository extends BaseRepository<WmsLocatePart, Long> {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsLocate;
|
||||
|
||||
/**
|
||||
* @Description : 库位表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-07 11:14
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsLocateRepository extends BaseRepository<WmsLocate, 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,15 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsPart;
|
||||
import org.springframework.stereotype.Repository;
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : dragon.xu
|
||||
* @CreateDate : 2018-11-08 10:19
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsPartRepository extends BaseRepository<WmsPart, 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