Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into stock_report
# Conflicts: # modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/WmsStockQuan.java # modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/sqlpack/WmsHqlPack.javayun-zuoyi
commit
8409025253
@ -1,38 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.andon.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 : ANDON_动作
|
||||
* @Reference :
|
||||
* @Author : hansen.ke
|
||||
* @CreateDate : 2019-05-13 9:47
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_ACTION")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("ANDON_动作")
|
||||
public class AndonAction extends BaseBean {
|
||||
|
||||
@Column(name = "ACTION_CODE")
|
||||
@ApiParam(value = "动作代码")
|
||||
private String actionCode;
|
||||
|
||||
@Column(name = "ACTION_NAME")
|
||||
@ApiParam(value = "动作名称")
|
||||
private String actionName;
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.andon.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 : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:16
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_ALARM_TYPE")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("安灯类型")
|
||||
public class AndonAlarmType extends BaseBean {
|
||||
|
||||
@Column(name = "ALARM_CODE")
|
||||
@ApiParam(value = "安灯类型代码")
|
||||
private String alarmCode;
|
||||
|
||||
@Column(name = "ALARM_NAME")
|
||||
@ApiParam(value = "安灯类型名称")
|
||||
private String alarmName;
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.andon.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 : ANDON_重要度
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2019-05-31 9:47
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_IMPORTANCE")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("ANDON_事件现象")
|
||||
public class AndonImportance extends BaseBean {
|
||||
|
||||
@Column(name = "IMPORTANCE_CODE")
|
||||
@ApiParam(value = "重要等级代码")
|
||||
private String importanceCode;
|
||||
|
||||
@Column(name = "IMPORTANCE_NAME")
|
||||
@ApiParam(value = "重要等级名称")
|
||||
private String importanceName;
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.andon.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 : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:16
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_RESPONSE")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("安灯通知方式")
|
||||
public class AndonResponse extends BaseBean {
|
||||
|
||||
@Column(name = "RESPONSE_CODE")
|
||||
@ApiParam(value = "通知方式代码")
|
||||
private String responseCode;
|
||||
|
||||
@Column(name = "RESPONSE_NAME")
|
||||
@ApiParam(value = "通知方式名称")
|
||||
private String responseName;
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.andon.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 : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:16
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_STATUS")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("安灯状态")
|
||||
public class AndonStatus extends BaseBean {
|
||||
|
||||
@Column(name = "STATUS_CODE")
|
||||
@ApiParam(value = "状态代码")
|
||||
private String statusCode;
|
||||
|
||||
@Column(name = "STATUS_NAME")
|
||||
@ApiParam(value = "状态名称")
|
||||
private String statusName;
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonAlarmType;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :对象持久层仓用方法控制(安灯类型信息)
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:27
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonAlarmTypeRepository extends BaseRepository<AndonAlarmType,Long> {
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonResponse;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :对象持久层仓用方法控制(安灯通知方式信息)
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:27
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonResponseRepository extends BaseRepository<AndonResponse,Long> {
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonStatus;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :对象持久层仓用方法控制(安灯状态信息)
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:27
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonStatusRepository extends BaseRepository<AndonStatus,Long> {
|
||||
}
|
@ -0,0 +1,81 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description : ASN
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2019-06-17 10:50
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api(value = "ASN计划", description = "ASN计划")
|
||||
public class SapAsn extends SapBase {
|
||||
|
||||
@ApiParam(value = "ASN号")
|
||||
@AnnoOutputColumn
|
||||
private String zasnno;
|
||||
|
||||
@ApiParam(value = "供应商代码")
|
||||
@AnnoOutputColumn
|
||||
private String lifnr;
|
||||
|
||||
@ApiParam(value = "ASN item")
|
||||
@AnnoOutputColumn
|
||||
private Double zrnum;
|
||||
|
||||
@ApiParam(value = "物料编码")
|
||||
@AnnoOutputColumn
|
||||
private String matnr;
|
||||
|
||||
@ApiParam(value = "数量")
|
||||
@AnnoOutputColumn
|
||||
private Double zcnNum;
|
||||
|
||||
@ApiParam(value = "计量单位")
|
||||
@AnnoOutputColumn
|
||||
private String unit;
|
||||
|
||||
@ApiParam(value = "特殊采购标识")
|
||||
@AnnoOutputColumn
|
||||
private String pstyp;
|
||||
|
||||
@ApiParam(value = "计划交货日期")
|
||||
@AnnoOutputColumn
|
||||
private String zdate;
|
||||
|
||||
@ApiParam(value = "计划交货时间")
|
||||
@AnnoOutputColumn
|
||||
private String zcjsj;
|
||||
|
||||
@ApiParam(value = "工厂代码")
|
||||
@AnnoOutputColumn
|
||||
private String werks;
|
||||
|
||||
@ApiParam(value = "收货库存地点")
|
||||
@AnnoOutputColumn
|
||||
private String lgort;
|
||||
|
||||
@ApiParam(value = "凭证标识")
|
||||
@AnnoOutputColumn
|
||||
private String zdoc;
|
||||
|
||||
@ApiParam(value = "状态", example = "U")
|
||||
@AnnoOutputColumn
|
||||
private String zstasI;
|
||||
|
||||
@ApiParam(value = "条码信息")
|
||||
@AnnoOutputColumn
|
||||
private String ztxm;
|
||||
|
||||
@ApiParam(value = "道口")
|
||||
@AnnoOutputColumn
|
||||
private String zdk;
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,71 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Date;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @Description : sap接口基础公共字段
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2019-06-17 16:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class SapBase {
|
||||
|
||||
@ApiParam(value = "处理人", example = "-1")
|
||||
private String actusr = "导入";
|
||||
|
||||
@ApiParam(value = "SID", example = "-1")
|
||||
private String sid = UUID.randomUUID().toString() + UUID.randomUUID().toString();
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiParam(value = "接收数据日期", example = "-1")
|
||||
private String recymd;
|
||||
|
||||
@JsonFormat(pattern = "HH:mm:ss", timezone = "GMT+8")
|
||||
@ApiParam(value = "接收数据时间", example = "-1")
|
||||
private String rechms;
|
||||
|
||||
@ApiParam(value = "同步标志", example = "-1")
|
||||
private String synflg = "Y";
|
||||
|
||||
@ApiParam(value = "同步日期", example = "-1")
|
||||
private String synymd;
|
||||
|
||||
@ApiParam(value = "同步时间", example = "-1")
|
||||
private String synhms;
|
||||
|
||||
@ApiParam(value = "处理标志", example = "-1")
|
||||
private String actflg = "Y";
|
||||
|
||||
@ApiParam(value = "处理日期", example = "-1")
|
||||
private String actymd;
|
||||
|
||||
@ApiParam(value = "处理时间", example = "-1")
|
||||
private String acthms;
|
||||
|
||||
@ApiParam(value = "状态标志", example = "-1")
|
||||
private String staflg;
|
||||
|
||||
@ApiParam(value = "顺序号", example = "-1")
|
||||
private Integer seq;
|
||||
|
||||
@ApiParam(value = "GUID", example = "-1")
|
||||
private String guid;
|
||||
|
||||
public String getSynymdTime() {
|
||||
SimpleDateFormat format = new SimpleDateFormat("YYYY-MM-DD");
|
||||
return format.format(new Date());
|
||||
}
|
||||
|
||||
public String getSynhmsTime() {
|
||||
SimpleDateFormat format = new SimpleDateFormat("HH:mm:ss");
|
||||
return format.format(new Date());
|
||||
}
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
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 : jimmy.zeng
|
||||
* @CreateDate : 2019-06-17 12:01
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_CS_ADJUST_RANGE")
|
||||
@Api("盘点调差范围信息")
|
||||
public class WmsCSAdjustRange extends BaseBean {
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
public String orderNo;
|
||||
|
||||
@Column(name = "ITEM")
|
||||
@ApiParam("行号")
|
||||
public Integer item;
|
||||
|
||||
@Column(name="IS_ADJUST")
|
||||
@ApiParam(value = "调整标识", example = "1")
|
||||
public Integer isAdjust;
|
||||
}
|
@ -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 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 : jimmy.zeng
|
||||
* @CreateDate : 2019-06-17 11:57
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_CS_RANGE")
|
||||
@Api("盘点范围信息")
|
||||
public class WmsCSRange extends BaseBean {
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
public String orderNo;
|
||||
|
||||
@Column(name = "ITEM")
|
||||
@ApiParam("行号")
|
||||
public Integer item;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料编码")
|
||||
public String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
public String partNameRdd;
|
||||
|
||||
@Column(name = "ZONE_NO")
|
||||
@ApiParam("存储区编号")
|
||||
public String zoneNo;
|
||||
|
||||
@Column(name = "LOCATE_NO")
|
||||
@ApiParam("库位编号")
|
||||
public String locateNo;
|
||||
|
||||
@Column(name = "UNIT")
|
||||
@ApiParam("单位")
|
||||
public String unit;
|
||||
|
||||
public WmsCSRange(){}
|
||||
|
||||
public WmsCSRange(String zoneNo,String partNo,String partNameRdd){
|
||||
this.zoneNo = zoneNo;
|
||||
this.partNo = partNo;
|
||||
this.partNameRdd = partNameRdd;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,76 @@
|
||||
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 : yerik.shi
|
||||
* @CreateDate : 2019-06-11
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_LINE_LOCATE_PART")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api(value="线边库物料信息",description = "线边库物料信息")
|
||||
public class WmsLineLocatePart extends BaseBean {
|
||||
|
||||
@Column(name="LOCATE_NO")
|
||||
@ApiParam(value ="库位代码")
|
||||
private String locateNo;
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam(value = "物料编码")
|
||||
private String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam(value = "物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
public Double getPullQty() {
|
||||
return pullQty == null ? 0D : this.pullQty.doubleValue();
|
||||
}
|
||||
|
||||
public Double getMax() {
|
||||
return max== null ? 0D : this.max.doubleValue();
|
||||
}
|
||||
|
||||
public Double getMin() {
|
||||
return min== null ? 0D : this.min.doubleValue();
|
||||
}
|
||||
|
||||
public Integer getIsGeneratePicklist() {
|
||||
return isGeneratePicklist== null ? 0: this.isGeneratePicklist.intValue();
|
||||
}
|
||||
|
||||
@Column(name = "PULL_QTY")
|
||||
@ApiParam(value = "拉动数量")
|
||||
private Double pullQty;
|
||||
|
||||
@Column(name = "Max")
|
||||
@ApiParam(value = "最大值")
|
||||
private Double max;
|
||||
|
||||
@Column(name = "Min")
|
||||
@ApiParam(value = "最小值")
|
||||
private Double min;
|
||||
|
||||
@Column(name = "IS_GENERATE_PICKLIST")
|
||||
@ApiParam(value = "是否生成领料单")
|
||||
private Integer isGeneratePicklist;
|
||||
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dbinterface;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* 回写接口库的值
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class UpdateSyncItem {
|
||||
|
||||
/**
|
||||
* 字段名
|
||||
*/
|
||||
public String columnName;
|
||||
|
||||
/**
|
||||
* 写入的值
|
||||
* 支持表达式
|
||||
* #sap_date, #sap_time, #guid
|
||||
*/
|
||||
public String updateValue;
|
||||
}
|
@ -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.WmsCSAdjustRange;
|
||||
|
||||
/**
|
||||
* @Description : 对象持久层仓用方法控制(盘点调差范围信息)
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2019-06-17 15:13
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsCSAdjustRangeRepository extends BaseRepository<WmsCSAdjustRange, 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.WmsCSRange;
|
||||
|
||||
/**
|
||||
* @Description : 对象持久层仓用方法控制(盘点范围信息)
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2019-06-17 15:12
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsCSRangeRepository extends BaseRepository<WmsCSRange, 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.WmsLineLocatePart;
|
||||
|
||||
/**
|
||||
* @Description : 线边库物料表
|
||||
* @Reference :
|
||||
* @Author : yerik.shi
|
||||
* @CreateDate : 2019-06-12
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsLineLocatePartRepository extends BaseRepository<WmsLineLocatePart, Long> {
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsVendorPart;
|
||||
|
||||
public interface WmsVendorPartRepository extends BaseRepository<WmsVendorPart, Long>{
|
||||
}
|
Loading…
Reference in New Issue