Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
9ab0d784dd
@ -0,0 +1,51 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 道口
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-03-29
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_DOCK")
|
||||
@Api("道口预约信息")
|
||||
public class WmsDock extends BaseBean {
|
||||
@Column(name="DOCK_CODE")
|
||||
@ApiParam("道口代码")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||
private String dockCode;
|
||||
|
||||
@Column(name="DOCK_ADDRESS")
|
||||
@ApiParam("道口发运地址")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||
private String dockAddress;
|
||||
|
||||
@Column(name="DOCK_DESC")
|
||||
@ApiParam("道口发运地址描述")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||
private String dockDesc;
|
||||
|
||||
@Column(name="DOCK_TYPE")
|
||||
@ApiParam("道口类型")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||
private String dockType;
|
||||
}
|
@ -0,0 +1,72 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 道口预约信息
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-03-29
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_DOCK_ORDER_INFO")
|
||||
@Api("道口预约信息")
|
||||
public class WmsDockOrderInfo extends BaseBean {
|
||||
|
||||
@Column(name="DOCK_CODE")
|
||||
@ApiParam("道口代码")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||
private String dockCode;
|
||||
|
||||
@Column(name="ORDER_DATE")
|
||||
@ApiParam("预约日期")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.DATETIME)
|
||||
private String orderDate;
|
||||
|
||||
@Column(name="WINDOW_TIME")
|
||||
@ApiParam("窗口时间")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.DATETIME)
|
||||
private String windowTime;
|
||||
|
||||
@Column(name="ORDER_STATUS")
|
||||
@ApiParam("预约状态")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "DOCK_ORDER_STATUS")
|
||||
private Integer orderStatus;
|
||||
|
||||
@Column(name="SUPPLIER_CODE")
|
||||
@ApiParam("供应商编码")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||
private String supplierCode;
|
||||
|
||||
@Column(name="CAR_NO")
|
||||
@ApiParam("车辆编号")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||
private String carNo;
|
||||
|
||||
@Column(name="DRIVER_NAME")
|
||||
@ApiParam("驾驶员")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||
private String driverName;
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单据号")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||
private String orderNo;
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 道口窗口时间
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-03-29
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_DOCK_WINDOW_TIME")
|
||||
@Api("道口窗口时间")
|
||||
public class WmsDockWindowTime extends BaseBean {
|
||||
|
||||
@Column(name="DOCK_CODE")
|
||||
@ApiParam("道口代码")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||
private String dockCode;
|
||||
|
||||
@Column(name="WINDOW_TIME")
|
||||
@ApiParam("窗口时间")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.DATETIME)
|
||||
private String windowTime;
|
||||
}
|
@ -0,0 +1,51 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Index;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description 拉动规则实体
|
||||
* @Author Jason
|
||||
* @Date 2020-03-20
|
||||
* @ModifyDate 2020-03-20
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "WMS_PULL_RULE")
|
||||
@Api("拉动规则")
|
||||
public class WmsPullRule extends BaseBean {
|
||||
@Column(name = "PULL_WAY")
|
||||
@ApiParam(value = "拉动类型", example = "10")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "PULL_WAY_STATUS")
|
||||
private Integer pullWay;
|
||||
|
||||
@Column(name = "CONTAIN_UNFINISH_ORDER")
|
||||
@ApiParam(value = "考虑未完成的移库单", example = "0")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, isRequire = 2, entityName = "TRUE_OR_FALSE")
|
||||
private Integer containUnfinishOrder;
|
||||
|
||||
@Column(name = "CONTAIN_EXIST_PERIOD")
|
||||
@ApiParam(value = "考虑现有库存", example = "0")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, isRequire = 2, entityName = "TRUE_OR_FALSE")
|
||||
private Integer containExistStock;
|
||||
|
||||
@Column(name = "TAIL_QTY_MODE")
|
||||
@ApiParam(value = "尾数计算方式", example = "0")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, isRequire = 2, entityName = "TAIL_QTY_MODE")
|
||||
private Integer tailQtyMode;
|
||||
}
|
@ -0,0 +1,109 @@
|
||||
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 lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import javax.persistence.Transient;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : 波次规则数据
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2020-03-25 10:10
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "WMS_WAVE_RULE")
|
||||
@Api(value = "波次规则数据表")
|
||||
public class WmsWaveRule extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 8664373854844368961L;
|
||||
|
||||
@Column(name = "RULE_CODE")
|
||||
@ApiParam(value = "波次规则代码")
|
||||
public String ruleCode;
|
||||
|
||||
@Column(name = "RULE_DESC")
|
||||
@ApiParam(value = "波次规则描述")
|
||||
public String ruleDesc;
|
||||
|
||||
/**
|
||||
* 分配规则 2-不分配(默认) 1-分配到责任区
|
||||
*/
|
||||
@Column(name = "ALLOCATE_RULE")
|
||||
@ApiParam(value = "分配规则", example = "1")
|
||||
public Integer allocateRule;
|
||||
|
||||
@Column(name = "EXTEND_SQL")
|
||||
@ApiParam(value = "扩展脚本")
|
||||
public String extendSql;
|
||||
|
||||
@Column(name = "START_EFFECT_DATE")
|
||||
@ApiParam(value = "开始生效时间")
|
||||
public String startEffectDate;
|
||||
|
||||
@Column(name = "END_EFFECT_DATE")
|
||||
@ApiParam(value = "结束生效时间")
|
||||
public String endEffectDate;
|
||||
|
||||
@Column(name = "SORT_CONDITIONS")
|
||||
@ApiParam(value = "单据排序条件")
|
||||
public String sortConditions;
|
||||
|
||||
@Column(name = "ORDER_CONTROL_TIME")
|
||||
@ApiParam(value = "单据控制时间")
|
||||
public String orderControlTime;
|
||||
|
||||
@Column(name = "FIXED_ORDER_QTY")
|
||||
@ApiParam(value = "固定单据数量", example = "0")
|
||||
public Integer fixedOrderQty;
|
||||
|
||||
@Column(name = "FIXED_PART_QTY")
|
||||
@ApiParam(value = "固定物料箱数", example = "0")
|
||||
public Integer fixedPartQty;
|
||||
|
||||
@Column(name = "WAVE_QTY")
|
||||
@ApiParam(value = "波次数量", example = "0")
|
||||
public Integer waveQty;
|
||||
|
||||
@Column(name = "ORDER_MAX_QTY")
|
||||
@ApiParam(value = "最大单据数量", example = "0")
|
||||
public Integer orderMaxQty;
|
||||
|
||||
@Column(name = "PART_MAX_QTY")
|
||||
@ApiParam(value = "最大物料数量", example = "0")
|
||||
public Double partMaxQty;
|
||||
|
||||
@Column(name = "ORDER_TIMEOUT_TIME")
|
||||
@ApiParam(value = "单据等待时间", example = "0")
|
||||
public Integer orderTimeOutTime;
|
||||
|
||||
@Column(name = "NEXT_WAVE_TIME")
|
||||
@ApiParam(value = "下次波次时间")
|
||||
public String nextWaveTime;
|
||||
|
||||
@Column(name = "IS_CROSS_AREA")
|
||||
@ApiParam(value = "允许跨区", example = "0")
|
||||
public Integer isCrossArea;
|
||||
|
||||
@Column(name = "IS_COLLECTION")
|
||||
@ApiParam(value = "允许整箱归集")
|
||||
public Integer isCollection;
|
||||
|
||||
@Transient
|
||||
@ApiParam(value = "波次规则明细信息")
|
||||
private List<WmsWaveRuleDetails> waveRuleDetailsList;
|
||||
}
|
@ -0,0 +1,56 @@
|
||||
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 lombok.EqualsAndHashCode;
|
||||
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 : siliter.yuan
|
||||
* @CreateDate : 2020-03-25 10:10
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "WMS_WAVE_RULE_DETAILS")
|
||||
@Api(value = "波次规则明细数据表")
|
||||
public class WmsWaveRuleDetails extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 8664373954844368961L;
|
||||
|
||||
@Column(name = "RULE_ID")
|
||||
@ApiParam(value = "波次规则编号", example = "0")
|
||||
public Long ruleId;
|
||||
|
||||
@Column(name = "FIELD_CH_NAME")
|
||||
@ApiParam(value = "字段中文名称")
|
||||
public String fieldChName;
|
||||
|
||||
@Column(name = "FIELD_EN_NAME")
|
||||
@ApiParam(value = "字段英文名称")
|
||||
public String fieldEnName;
|
||||
|
||||
@Column(name = "MERGE_OPERATOR_TYPE")
|
||||
@ApiParam(value = "合并操作类型", example = "0")
|
||||
public Integer mergeOperatorType;
|
||||
|
||||
@Column(name = "FILED_VALUE")
|
||||
@ApiParam(value = "字段值")
|
||||
public String fieldValue;
|
||||
|
||||
public Long getRuleId() {
|
||||
return ruleId == null ? 0L : ruleId.longValue();
|
||||
}
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @description 道口看板数据模型
|
||||
* @author jason.niu
|
||||
* @date 2020/03/31
|
||||
*/
|
||||
@Data
|
||||
@Api("道口看板数据模型")
|
||||
public class DockDashboardModel {
|
||||
@ApiParam("预约时间")
|
||||
private String orderDate;
|
||||
|
||||
@ApiParam("预约状态")
|
||||
private Integer appointmentStatus;
|
||||
|
||||
@ApiParam("供应商编码")
|
||||
private String supplierCode;
|
||||
|
||||
@ApiParam("单号")
|
||||
private String orderNo;
|
||||
|
||||
@ApiParam("车牌号")
|
||||
private String carNo;
|
||||
|
||||
@ApiParam("驾驶员")
|
||||
private String driverName;
|
||||
}
|
@ -0,0 +1,90 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import org.hibernate.annotations.ColumnDefault;
|
||||
|
||||
/**
|
||||
* @Description : 移库单数据模型Model
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2020-03-26 11:18
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@Api("移库单数据模型")
|
||||
public class WmsDocMovementModel {
|
||||
|
||||
@ApiParam("订单号")
|
||||
private String orderNo;
|
||||
|
||||
@ApiParam(value = "业务类型", example = "1")
|
||||
private Integer busiType;
|
||||
|
||||
@ApiParam("客户代码")
|
||||
private String custNo;
|
||||
|
||||
@ApiParam("来源仓库代码")
|
||||
private String srcWhNo;
|
||||
|
||||
@ApiParam("来源存储区代码")
|
||||
private String srcZoneNo;
|
||||
|
||||
@ApiParam("目标仓库代码")
|
||||
private String destWhNo;
|
||||
|
||||
@ApiParam("目标存储区代码")
|
||||
private String destZoneNo;
|
||||
|
||||
@ApiParam("物料组代码")
|
||||
private String partGroupNo;
|
||||
|
||||
@ApiParam("订单状态")
|
||||
private String orderStatus;
|
||||
|
||||
@ApiParam(value = "优先级", example = "1")
|
||||
public Integer priority;
|
||||
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@ColumnDefault("0")
|
||||
@ApiParam(value = "已拣货数量", example = "1")
|
||||
private Double pickQty;
|
||||
|
||||
@ColumnDefault("0")
|
||||
@ApiParam(value = "已出库数量", example = "1")
|
||||
private Double outQty;
|
||||
|
||||
@ColumnDefault("0")
|
||||
@ApiParam(value = "已移库数量", example = "1")
|
||||
private Double moveQty;
|
||||
|
||||
@ColumnDefault("0")
|
||||
@ApiParam(value = "需求数量", example = "0")
|
||||
public Double qty;
|
||||
|
||||
@ApiParam("源单行号")
|
||||
public String srcItem;
|
||||
|
||||
@ApiParam(value = "源单号")
|
||||
private String srcNo;
|
||||
|
||||
@ApiParam("物料号")
|
||||
private String partNameRdd;
|
||||
|
||||
@ApiParam("单位")
|
||||
private String unit;
|
||||
|
||||
@ApiParam(value = "标准包装", example = "1")
|
||||
private Double snp;
|
||||
|
||||
@ApiParam(value = "一步法/两步法")
|
||||
private Integer isSingleStep;
|
||||
|
||||
@ApiParam(value = "创建时间")
|
||||
private String createDateTime;
|
||||
}
|
@ -0,0 +1,54 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @description 外部拉动数据结构
|
||||
* @author jason.niu
|
||||
* @date 2020/03/25
|
||||
*/
|
||||
@Data
|
||||
@Api("外部拉动单模型")
|
||||
public class WmsPullOrderModel {
|
||||
|
||||
@ApiParam("工厂代码")
|
||||
private String organizeCode;
|
||||
|
||||
@ApiParam("产线")
|
||||
private String lineNo;
|
||||
|
||||
@ApiParam("仓库代码")
|
||||
public String WhNo;
|
||||
|
||||
@ApiParam("存储区代码")
|
||||
public String ZoneNo;
|
||||
|
||||
@ApiParam("目标库位代码")
|
||||
public String destLocateNo;
|
||||
|
||||
@ApiParam("库位")
|
||||
private String locateNo;
|
||||
|
||||
@ApiParam("物料编码")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam("物料名称")
|
||||
public String partName;
|
||||
|
||||
@ApiParam("源仓库代码")
|
||||
public String srcWhNo;
|
||||
|
||||
@ApiParam("源存储区代码")
|
||||
public String srcZoneNo;
|
||||
|
||||
@ApiParam("数量")
|
||||
private Double qty;
|
||||
|
||||
@ApiParam("单位")
|
||||
public String unit;
|
||||
|
||||
@ApiParam("批次")
|
||||
public String lotNo;
|
||||
}
|
@ -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.WmsDockOrderInfo;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :道口预约信息
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-03-29
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsDockOrderInfoRepository extends BaseRepository<WmsDockOrderInfo, 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.WmsDock;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :道口
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-03-30
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsDockRepository extends BaseRepository<WmsDock, 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.WmsDockWindowTime;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :道口窗口时间
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-03-29
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsDockWindowTimeRepository extends BaseRepository<WmsDockWindowTime, 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.WmsPullRule;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :拉动规则Repository的方法接口
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-03-23 15:38
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsPullRuleRepository extends BaseRepository<WmsPullRule, 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.WmsWaveRuleDetails;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2020-03-25 11:29
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsWaveRuleDetailsRepository extends BaseRepository<WmsWaveRuleDetails, 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.WmsWaveRule;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2020-03-25 11:29
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsWaveRuleRepository extends BaseRepository<WmsWaveRule, Long> {
|
||||
}
|
Loading…
Reference in New Issue