Merge branch 'master' of http://git.estsh.com/i3-IMPP/i3plus-pojo
commit
dc0c0b0058
@ -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 : 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;
|
||||
}
|
@ -0,0 +1,41 @@
|
||||
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;
|
||||
|
||||
}
|
@ -0,0 +1,100 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
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-10-31 15:18
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="T_WMS_ORG_WAREHOUSE")
|
||||
@Api("工厂仓库组织关系表")
|
||||
public class RefOrgWareHouse extends BaseBean {
|
||||
|
||||
@Column(name="ORG_ID")
|
||||
@ApiParam("组织编号")
|
||||
public String orgId;
|
||||
|
||||
@Column(name="WAREHOUSE_ID")
|
||||
@ApiParam("仓库编号")
|
||||
public String storeId;
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
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-10-31 15:18
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="T_WMS_USER_WAREHOUSE")
|
||||
@Api("用户仓库关系表")
|
||||
public class RefUserWareHouse extends BaseBean {
|
||||
|
||||
@Column(name="USER_ID")
|
||||
@ApiParam("用户编号")
|
||||
public String userId;
|
||||
|
||||
@Column(name="WAREHOUSE_ID")
|
||||
@ApiParam("仓库编号")
|
||||
public String storeId;
|
||||
}
|
@ -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 : alwaysfrin
|
||||
* @CreateDate : 2018-09-04 15:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="T_WMS_WAREHOUSE")
|
||||
@Api("工厂仓库信息")
|
||||
public class WareHouse extends BaseBean {
|
||||
|
||||
@Column(name="code")
|
||||
@ApiParam("仓库代码")
|
||||
public String code;
|
||||
|
||||
@Column(name="name")
|
||||
@ApiParam("仓库名称")
|
||||
public String name;
|
||||
|
||||
@Column(name="address")
|
||||
@ApiParam("仓库地址")
|
||||
public String address;
|
||||
|
||||
@Column(name="telephone")
|
||||
@ApiParam("仓库电话号码")
|
||||
public String telephone;
|
||||
|
||||
@Column(name="fax")
|
||||
@ApiParam("仓库传真号码")
|
||||
public String fax;
|
||||
|
||||
@Column(name="contact")
|
||||
@ApiParam("联系人")
|
||||
public String contact;
|
||||
}
|
@ -0,0 +1,101 @@
|
||||
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 : jimmy.zeng
|
||||
* @CreateDate : 2018-11-01 13:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_TRANS")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="库存交易记录表",description = "库存交易记录表")
|
||||
public class WmsTrans extends BaseBean{
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam(value ="单据编号")
|
||||
private String orderNo;
|
||||
|
||||
@Column(name="SN")
|
||||
@ApiParam(value ="箱条码")
|
||||
private String sn;
|
||||
|
||||
@Column(name="PART_ID")
|
||||
@ApiParam(value ="零件id")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long partId;
|
||||
|
||||
@Column(name="PART_No")
|
||||
@ApiParam(value ="零件编号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam(value ="零件名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@Column(name="TRANS_STATUS")
|
||||
@ApiParam(value ="交易状态")
|
||||
private Integer transStatus;
|
||||
|
||||
@Column(name="QTY")
|
||||
@ApiParam(value ="需求数")
|
||||
private Double qty;
|
||||
|
||||
@Column(name="TRANS_CODE")
|
||||
@ApiParam(value ="交易类型")
|
||||
private String transCode;
|
||||
|
||||
@Column(name="DATASOURCE")
|
||||
@ApiParam(value ="数据来源")
|
||||
private Integer dataSource;
|
||||
|
||||
@Column(name="UNIT")
|
||||
@ApiParam(value ="单位")
|
||||
private String unit;
|
||||
|
||||
@Column(name="LOC_ID")
|
||||
@ApiParam(value ="库位id")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long locId;
|
||||
|
||||
@Column(name="LOC_CODE")
|
||||
@ApiParam(value ="库位代码")
|
||||
private String locCode;
|
||||
|
||||
@Column(name="GROUP_ID")
|
||||
@ApiParam(value ="分组id")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long groupId;
|
||||
|
||||
public Long getLocId() {
|
||||
if(locId != null) {
|
||||
return locId.longValue();
|
||||
}else{
|
||||
return locId;
|
||||
}
|
||||
}
|
||||
|
||||
public Long getPartId() {
|
||||
if(partId != null) {
|
||||
return partId.longValue();
|
||||
}else{
|
||||
return partId;
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,101 @@
|
||||
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 : jimmy.zeng
|
||||
* @CreateDate : 2018-11-01 16:22
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_TRANS_RCD")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="仓库交易归档表",description = "仓库交易归档表")
|
||||
public class WmsTransRcd extends BaseBean{
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam(value ="单据编号")
|
||||
private String orderNo;
|
||||
|
||||
@Column(name="SN")
|
||||
@ApiParam(value ="箱条码")
|
||||
private String sn;
|
||||
|
||||
@Column(name="PART_ID")
|
||||
@ApiParam(value ="零件id")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long partId;
|
||||
|
||||
@Column(name="PART_No")
|
||||
@ApiParam(value ="零件编号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam(value ="零件名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@Column(name="TRANS_STATUS")
|
||||
@ApiParam(value ="交易状态")
|
||||
private Integer transStatus;
|
||||
|
||||
@Column(name="QTY")
|
||||
@ApiParam(value ="需求数")
|
||||
private Double qty;
|
||||
|
||||
@Column(name="TRANS_CODE")
|
||||
@ApiParam(value ="交易类型")
|
||||
private String transCode;
|
||||
|
||||
@Column(name="DATASOURCE")
|
||||
@ApiParam(value ="数据来源")
|
||||
private Integer dataSource;
|
||||
|
||||
@Column(name="UNIT")
|
||||
@ApiParam(value ="单位")
|
||||
private String unit;
|
||||
|
||||
@Column(name="LOC_ID")
|
||||
@ApiParam(value ="库位id")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long locId;
|
||||
|
||||
@Column(name="LOC_CODE")
|
||||
@ApiParam(value ="库位代码")
|
||||
private String locCode;
|
||||
|
||||
@Column(name="GROUP_ID")
|
||||
@ApiParam(value ="分组id")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long groupId;
|
||||
|
||||
public Long getLocId() {
|
||||
if(locId != null) {
|
||||
return locId.longValue();
|
||||
}else{
|
||||
return locId;
|
||||
}
|
||||
}
|
||||
|
||||
public Long getPartId() {
|
||||
if(partId != null) {
|
||||
return partId.longValue();
|
||||
}else{
|
||||
return partId;
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
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 : jimmy.zeng
|
||||
* @CreateDate : 2018-11-01 11:57
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_TRANS_TYPE")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Api(value="交易类型表",description = "交易类型表")
|
||||
public class WmsTransType extends BaseBean{
|
||||
|
||||
@Column(name="TRANS_CODE")
|
||||
@ApiParam(value ="交易代码")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private String transCode;
|
||||
|
||||
@Column(name="TRANS_NAME")
|
||||
@ApiParam(value ="交易名称")
|
||||
private String transName;
|
||||
|
||||
}
|
@ -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.InterfaceDevice;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 对象持久层仓用方法控制
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2018-11-01 15:13
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface InterfaceDeviceRepository extends BaseRepository<InterfaceDevice, 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.WareHouse;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 对象持久层仓用方法控制
|
||||
* @Reference :
|
||||
* @Author : alwaysfrin
|
||||
* @CreateDate : 2018-09-13 9:47
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WareHouseRepository extends BaseRepository<WareHouse, 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.WmsTransRcd;
|
||||
|
||||
/**
|
||||
* @Description : 仓库交易归档表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-02 9:50
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsTransRcdRepository extends BaseRepository<WmsTransRcd, 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.WmsTrans;
|
||||
|
||||
/**
|
||||
* @Description : 仓库交易记录表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-02 9:49
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsTransRepository extends BaseRepository<WmsTrans, 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.WmsTransType;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 交易类型表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2018-11-02 9:49
|
||||
* @Modify:
|
||||
**/
|
||||
public interface WmsTransTypeRepository extends BaseRepository<WmsTransType, Long> {
|
||||
}
|
Loading…
Reference in New Issue