Merge branches 'master' and 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo
commit
46b8c6babb
@ -0,0 +1,64 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.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 :JIS发运模式
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-12-25
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_PATTERN_JIS")
|
||||
@Api("JIS发运模式")
|
||||
public class MesPatternJis extends BaseBean {
|
||||
|
||||
@Column(name = "PATTERN_NO")
|
||||
@ApiParam("模式编号")
|
||||
private String patternNo;
|
||||
|
||||
@Column(name = "PATTERN_NAME")
|
||||
@ApiParam("模式名称")
|
||||
private String patternName;
|
||||
|
||||
@Column(name = "RULE")
|
||||
@ApiParam("规则")
|
||||
private String rule;
|
||||
|
||||
@Column(name = "PATTERN_DESC")
|
||||
@ApiParam("描述")
|
||||
private String patternDesc;
|
||||
|
||||
@Column(name = "TOP_NO")
|
||||
@ApiParam("一次显示TOP数")
|
||||
private Integer topNo;
|
||||
|
||||
@Column(name = "HANDLE_NO")
|
||||
@ApiParam("一次处理套数")
|
||||
private Integer handleNo;
|
||||
|
||||
@Column(name = "PATTERN_TYPE")
|
||||
@ApiParam("模式类型")
|
||||
private Integer patternType;
|
||||
|
||||
@Column(name = "SCAN_TYPE")
|
||||
@ApiParam("是否按主队列顺序扫描")
|
||||
private Integer scanType;
|
||||
|
||||
}
|
@ -0,0 +1,51 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.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;
|
||||
|
||||
/**
|
||||
* @Description :产品配置明细
|
||||
* @Reference :
|
||||
* @Author : jack.jia
|
||||
* @CreateDate : 2019-04-02
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_PROD_CFG_DETAIL")
|
||||
@Api("产品配置明细")
|
||||
public class MesProdCfgDetail extends BaseBean {
|
||||
@Column(name = "PROD_CFG_CODE")
|
||||
@ApiParam("产品配置代码")
|
||||
private String prodCfgCode;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("零件号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "IS_VIRTUAL")
|
||||
@ApiParam("是否虚零件")
|
||||
private Integer isVirtual;
|
||||
|
||||
@Transient
|
||||
@ApiParam("零件名称")
|
||||
private String partName;
|
||||
|
||||
public int getIsVirtualVal() {
|
||||
return this.isVirtual == null ? 0 : this.isVirtual;
|
||||
}
|
||||
}
|
@ -0,0 +1,38 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.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: Crish
|
||||
* @CreateDate:2019-04-26-10:25
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_PRODUCE_CATEGORY")
|
||||
@Api("系统业务动作")
|
||||
public class MesProduceCategory extends BaseBean {
|
||||
|
||||
@Column(name = "PRODUCE_CTGY_CODE")
|
||||
@ApiParam("产品类型代码")
|
||||
private String produceCategoryCode;
|
||||
|
||||
@Column(name = "PRODUCE_CTGY_NAME")
|
||||
@ApiParam("产品类型名称")
|
||||
private String produceCategoryName;
|
||||
}
|
@ -0,0 +1,64 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.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 :JIS发运队列
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-12-24
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_QUEUE_JIS")
|
||||
@Api("JIS发运队列")
|
||||
public class MesQueueJis extends BaseBean {
|
||||
|
||||
@Column(name = "JIS_NO")
|
||||
@ApiParam("主队列编号")
|
||||
private String jisNo;
|
||||
|
||||
@Column(name = "PROD_CFG_CODE")
|
||||
@ApiParam("产品配置代码")
|
||||
private String prodCfgCode;
|
||||
|
||||
@Column(name = "VIN_CODE")
|
||||
@ApiParam("vin")
|
||||
private String vinCode;
|
||||
|
||||
@Column(name = "CAR_NO")
|
||||
@ApiParam("车号")
|
||||
private String carNo;
|
||||
|
||||
@Column(name = "SEQ")
|
||||
@ApiParam("排序")
|
||||
private Double seq;
|
||||
|
||||
@Column(name = "STATUS")
|
||||
@ApiParam("状态")
|
||||
private Integer status;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam("工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
}
|
@ -0,0 +1,56 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.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 :JIS发运队列明细
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-12-24
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_QUEUE_JIS_DETAIL")
|
||||
@Api("JIS发运队列明细")
|
||||
public class MesQueueJisDetail extends BaseBean {
|
||||
|
||||
@Column(name = "JIS_NO")
|
||||
@ApiParam("主队列编号")
|
||||
private String jisNo;
|
||||
|
||||
@Column(name = "PROD_CFG_CODE")
|
||||
@ApiParam("产品配置代码")
|
||||
private String prodCfgCode;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@Column(name = "STATUS")
|
||||
@ApiParam("状态")
|
||||
private Integer status;
|
||||
|
||||
@Column(name = "SERIAL_NUMBER")
|
||||
@ApiParam("产品条码")
|
||||
private String serialNumber;
|
||||
|
||||
}
|
@ -0,0 +1,76 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.MesPcnEnumUtil;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
public class QueueJisModel implements Serializable {
|
||||
|
||||
@ApiParam("主队列编号")
|
||||
private String jisNo;
|
||||
|
||||
@ApiParam("vin")
|
||||
private String vinCode;
|
||||
|
||||
@ApiParam("车号")
|
||||
private String carNo;
|
||||
|
||||
@ApiParam("排序")
|
||||
private Double seq;
|
||||
|
||||
@ApiParam("状态")
|
||||
private Integer status;
|
||||
|
||||
@ApiParam("产品配置代码")
|
||||
private String prodCfgCode;
|
||||
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam("物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@ApiParam("产品类型代码")
|
||||
private String produceCategoryCode;
|
||||
|
||||
@ApiParam("明细状态")
|
||||
private Integer detailStatus;
|
||||
|
||||
@ApiParam("产品条码")
|
||||
private String serialNumber;
|
||||
|
||||
@ApiParam("状态名称")
|
||||
private String statusName;
|
||||
|
||||
@ApiParam("明细状态名称")
|
||||
private String detailStatusName;
|
||||
|
||||
public String getStatusName() {
|
||||
return MesPcnEnumUtil.MES_QUEUE_JIS_STATUS.valueOfDescription(this.status);
|
||||
}
|
||||
|
||||
public String getDetailStatusName() {
|
||||
return MesPcnEnumUtil.MES_QUEUE_JIS_STATUS.valueOfDescription(this.detailStatus);
|
||||
}
|
||||
|
||||
public QueueJisModel() {
|
||||
}
|
||||
|
||||
public QueueJisModel(String jisNo, String vinCode, String carNo, Double seq, Integer status, String prodCfgCode, String partNo, String partNameRdd, String produceCategoryCode, Integer detailStatus, String serialNumber) {
|
||||
this.jisNo = jisNo;
|
||||
this.vinCode = vinCode;
|
||||
this.carNo = carNo;
|
||||
this.seq = seq;
|
||||
this.status = status;
|
||||
this.prodCfgCode = prodCfgCode;
|
||||
this.partNo = partNo;
|
||||
this.partNameRdd = partNameRdd;
|
||||
this.produceCategoryCode = produceCategoryCode;
|
||||
this.detailStatus = detailStatus;
|
||||
this.serialNumber = serialNumber;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesPatternJis;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-12-25
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesPatternJisRepository extends BaseRepository<MesPatternJis, Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesProdCfgDetail;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : jack.jia
|
||||
* @CreateDate : 2019-04-02
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesProdCfgDetailRepository extends BaseRepository<MesProdCfgDetail, Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesProduceCategory;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: Crish
|
||||
* @CreateDate:2019-04-26-10:28
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesProduceCategoryRepository extends BaseRepository<MesProduceCategory, Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesQueueJisDetail;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-12-25
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesQueueJisDetailRepository extends BaseRepository<MesQueueJisDetail, Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesQueueJis;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-12-25
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesQueueJisRepository extends BaseRepository<MesQueueJis, Long> {
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.annotation;
|
||||
|
||||
|
||||
import java.lang.annotation.*;
|
||||
|
||||
/**
|
||||
* @Author: Wynne.Lu
|
||||
* @CreateDate: 2019/12/25 1:45 下午
|
||||
* @Description:
|
||||
**/
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target({ElementType.FIELD})
|
||||
@Documented
|
||||
public @interface Json4Es {
|
||||
}
|
@ -1,100 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
public class QueueJisModel implements Serializable {
|
||||
@ApiParam("id")
|
||||
private Long id;
|
||||
|
||||
@ApiParam("作业任务编号")
|
||||
private String taskNo;
|
||||
|
||||
@ApiParam("作业类型")
|
||||
private Integer taskType;
|
||||
|
||||
@ApiParam("作业状态")
|
||||
private Integer taskStatus;
|
||||
|
||||
@ApiParam(value="生产线")
|
||||
private String workCenterCode;
|
||||
|
||||
@ApiParam("计划日期")
|
||||
private String planTime;
|
||||
|
||||
@ApiParam("任务来源")
|
||||
private Integer taskSource;
|
||||
|
||||
@ApiParam("备注")
|
||||
private String memo;
|
||||
|
||||
@ApiParam("通知标识")
|
||||
private Integer notifyFlag;
|
||||
|
||||
@ApiParam("关联任务")
|
||||
private String relateTask;
|
||||
|
||||
@ApiParam("组织代码")
|
||||
public String organizeCode;
|
||||
|
||||
@ApiParam("有效性")
|
||||
public Integer isValid;
|
||||
|
||||
@ApiParam("是否已删除")
|
||||
public Integer isDeleted;
|
||||
|
||||
@ApiParam("创建用户")
|
||||
public String createUser;
|
||||
|
||||
@ApiParam("创建日期")
|
||||
public String createDatetime;
|
||||
|
||||
@ApiParam("修改人")
|
||||
public String modifyUser;
|
||||
|
||||
@ApiParam("修改日期")
|
||||
public String modifyDatetime;
|
||||
|
||||
@ApiParam("作业类型")
|
||||
private String taskTypeName;
|
||||
|
||||
@ApiParam("作业状态")
|
||||
private String taskStatusName;
|
||||
|
||||
@ApiParam("任务来源")
|
||||
private String taskSourceName;
|
||||
|
||||
@ApiParam("通知标识")
|
||||
private String notifyFlagName;
|
||||
|
||||
@ApiParam("mes设备作业任务页面按钮控制")
|
||||
private MesButtonFlagModel mesButtonFlagModel;
|
||||
|
||||
|
||||
public QueueJisModel() {
|
||||
|
||||
}
|
||||
|
||||
public QueueJisModel(Long id, String taskNo, Integer taskType, Integer taskStatus, String workCenterCode, String planTime, Integer taskSource, String memo, Integer notifyFlag, String relateTask, String organizeCode, Integer isValid, Integer isDeleted, String createUser, String createDatetime, String modifyUser, String modifyDatetime) {
|
||||
this.id = id;
|
||||
this.taskNo = taskNo;
|
||||
this.taskType = taskType;
|
||||
this.taskStatus = taskStatus;
|
||||
this.workCenterCode = workCenterCode;
|
||||
this.planTime = planTime;
|
||||
this.taskSource = taskSource;
|
||||
this.memo = memo;
|
||||
this.notifyFlag = notifyFlag;
|
||||
this.relateTask = relateTask;
|
||||
this.organizeCode = organizeCode;
|
||||
this.isValid = isValid;
|
||||
this.isDeleted = isDeleted;
|
||||
this.createUser = createUser;
|
||||
this.createDatetime = createDatetime;
|
||||
this.modifyUser = modifyUser;
|
||||
this.modifyDatetime = modifyDatetime;
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import cn.estsh.i3plus.pojo.wms.bean.dynamic.WmsFieldInfo;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : Wms实体字段Model信息
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2020-01-08 09:53
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public class WmsFieldInfoModel implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -6376845639646427495L;
|
||||
|
||||
@ApiParam(value = "字段信息列表")
|
||||
public List<WmsFieldInfo> wmsFieldInfoList;
|
||||
|
||||
@ApiParam(value = "新增数据操作类")
|
||||
private String baseRepository;
|
||||
|
||||
public WmsFieldInfoModel (String baseRepository, List<WmsFieldInfo> wmsFieldInfoList) {
|
||||
this.baseRepository = baseRepository;
|
||||
this.wmsFieldInfoList = wmsFieldInfoList;
|
||||
}
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.dynamic.WmsListElement;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : WMS列表菜单model
|
||||
* @Reference :
|
||||
* @Author : sjc
|
||||
* @CreateDate : 2020-01-07 14:33
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("WMS列表菜单model")
|
||||
public class WmsListElementModel extends BaseBean {
|
||||
|
||||
@ApiParam(value = "功能菜单ID")
|
||||
private Long functionId;
|
||||
|
||||
@ApiParam(value = "用户编号")
|
||||
private String userCode;
|
||||
|
||||
@ApiParam(value = "是否默认配置")
|
||||
private Integer isDefault;
|
||||
|
||||
List<WmsListElement> wmsListElementList;
|
||||
|
||||
}
|
@ -0,0 +1,39 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.dynamic.WmsSearchElement;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : WMS列表搜索model
|
||||
* @Reference :
|
||||
* @Author : sjc
|
||||
* @CreateDate : 2020-01-07 14:33
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("WMS列表搜索model")
|
||||
public class WmsSearchElementModel extends BaseBean {
|
||||
|
||||
@ApiParam(value = "功能菜单ID")
|
||||
private Long functionId;
|
||||
|
||||
@ApiParam(value = "组名称")
|
||||
private String groupName;
|
||||
|
||||
@ApiParam(value = "组条件连接符")
|
||||
private String groupConnector;
|
||||
|
||||
@ApiParam(value = "用户编号")
|
||||
private String userCode;
|
||||
|
||||
@ApiParam(value = "是否共享")
|
||||
private Integer isShare;
|
||||
|
||||
@ApiParam(value = "Wms查询元素列表")
|
||||
private List<WmsSearchElement> searchElementList;
|
||||
}
|
@ -0,0 +1,90 @@
|
||||
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.ColumnDefault;
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Description : WMS数据迁移配置表
|
||||
* @Reference :
|
||||
* @Author : jessica.chen
|
||||
* @CreateDate : 2020-01-08 14:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_DATA_MIGRATION_CONFIG")
|
||||
@Api("WMS数据迁移配置表")
|
||||
public class WmsDataMigrationConfig extends BaseBean{
|
||||
|
||||
private static final long serialVersionUID = 9214639813072592777L;
|
||||
|
||||
@Column(name="MIG_NAME")
|
||||
@ApiParam("名称")
|
||||
private String migName;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam("描述")
|
||||
private String remark;
|
||||
|
||||
@Column(name="MIGRATION_CYCLE")
|
||||
@ApiParam("迁移周期")
|
||||
private String migrationCycle;
|
||||
|
||||
@Column(name="LAST_EXECUTION_TIME")
|
||||
@ApiParam("末次迁移时间")
|
||||
private String lastExecutionTime;
|
||||
|
||||
@Column(name="LAST_MRGRATION_QTY")
|
||||
@ApiParam(value = "末次迁移记录数", example = "0")
|
||||
private Integer LastmMigrationQty;
|
||||
|
||||
@Column(name="NEXT_EXECUTION_TIME")
|
||||
@ApiParam("下次执行时间")
|
||||
private String nextExecutionTime;
|
||||
|
||||
@Column(name="SRC_TABLE_NAME")
|
||||
@ApiParam("来源表名")
|
||||
private String srcTableName;
|
||||
|
||||
@Column(name="SRC_QUERY_CONDITIONS")
|
||||
@ApiParam("来源表查询条件")
|
||||
private String srcQueryConditions;
|
||||
|
||||
@Column(name="PROCESS_QTY")
|
||||
@ApiParam(value = "每次处理行数", example = "0")
|
||||
private Integer processQty;
|
||||
|
||||
@Column(name="DEST_TABLE_NAME")
|
||||
@ApiParam("目标表名")
|
||||
private String destTableName;
|
||||
|
||||
@Column(name="IS_PHYSICAL_DELETE")
|
||||
@ApiParam(value = "是否物理删除", example = "0")
|
||||
private Integer isPhysicalDelete;
|
||||
|
||||
@Column(name="ERROR_MESSAGE")
|
||||
@ApiParam("执行错误日志")
|
||||
private String errorMessage;
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="开始时间")
|
||||
private String mcStartTime;
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="结束时间")
|
||||
private String mcEndTime;
|
||||
}
|
@ -0,0 +1,92 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import 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 : gcj
|
||||
* @CreateDate : 2020-01-06 15:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "WMS_PUSH_CONFIG")
|
||||
@Api("推送配置")
|
||||
public class WmsPushConfig extends BaseBean{
|
||||
|
||||
private static final long serialVersionUID = 2701710669030092153L;
|
||||
@ApiParam("推送名称")
|
||||
@Column(name = "PUSH_NAME")
|
||||
private String pushName;
|
||||
|
||||
@ApiParam("规则类型")
|
||||
@Column(name = "QUARTZ_CRON")
|
||||
private String quartzCron;
|
||||
|
||||
@ApiParam("末次执行时间")
|
||||
@Column(name = "LAST_EXE_TIME")
|
||||
private String lastExeTime;
|
||||
|
||||
@ApiParam("下次执行时间")
|
||||
@Column(name = "NEXT_EXE_TIME")
|
||||
private String nextExeTime;
|
||||
|
||||
@ApiParam("序号")
|
||||
@Column(name = "SERIAL_NUMBER")
|
||||
private Integer serialNumber;
|
||||
|
||||
@ApiParam("查询Hql")
|
||||
@Column(name = "HQL_STR")
|
||||
private String hqlStr;
|
||||
|
||||
@ApiParam("查询Sql")
|
||||
@Column(name = "SQL_STR")
|
||||
private String sqlStr;
|
||||
|
||||
@ApiParam("脚本编号")
|
||||
@Column(name = "SCRIPT_NO")
|
||||
private String scriptNo;
|
||||
|
||||
@ApiParam("标题模板")
|
||||
@Column(name = "TITLE_TEMPLATE")
|
||||
private String titleTemplate;
|
||||
|
||||
@ApiParam("消息体模板")
|
||||
@Column(name = "CONTENT_TEMPLATE")
|
||||
private String contentTemplate;
|
||||
|
||||
@ApiParam("推送类型")
|
||||
@Column(name = "PUSH_TYPE")
|
||||
private Integer pushType;
|
||||
|
||||
@ApiParam("描述")
|
||||
@Column(name = "REMARK")
|
||||
private String remark;
|
||||
|
||||
@ApiParam("推送地址")
|
||||
@Column(name ="PATH_URL")
|
||||
private String pathUrl;
|
||||
|
||||
@ApiParam("头标签")
|
||||
@Column(name = "TITLE_LABEL")
|
||||
private String titleLabel;
|
||||
|
||||
@ApiParam("内容标签")
|
||||
@Column(name = "CONTENT_LABEL")
|
||||
private String contentLabel;
|
||||
|
||||
}
|
@ -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 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 : gcj
|
||||
* @CreateDate : 2020-01-06 15:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "WMS_PUSH_LOG")
|
||||
@Api("推送日志")
|
||||
public class WmsPushLog extends BaseBean{
|
||||
|
||||
private static final long serialVersionUID = -1708833666516164845L;
|
||||
@Column(name = "EXE_HQL")
|
||||
@ApiParam("执行Hql")
|
||||
private String exeHql;
|
||||
|
||||
@Column(name = "PUSH_TITLE")
|
||||
@ApiParam("推送标题")
|
||||
private String pushTitle;
|
||||
|
||||
@Column(name = "PUSH_CONTENT")
|
||||
@ApiParam("推送内容")
|
||||
private String pushContent;
|
||||
|
||||
@Column(name = "PUSH_TYPE")
|
||||
@ApiParam("推送类型")
|
||||
private String pushType;
|
||||
|
||||
@Column(name = "PUSH_RESULT")
|
||||
@ApiParam("推送结果")
|
||||
private String pushResult;
|
||||
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean.dynamic;
|
||||
|
||||
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.Index;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : WMS列表元素菜单关系表
|
||||
* @Reference :
|
||||
* @Author : sjc
|
||||
* @CreateDate : 2020-01-07 09:06
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_LISTELEMENT_FUNCTION", indexes = {
|
||||
@Index(columnList = "FUNCTION_ID"),
|
||||
@Index(columnList = "ELEMENT_ID"),
|
||||
@Index(columnList = "USER_CODE")
|
||||
})
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api(value="WMS列表元素菜单关系表",description = "WMS列表元素菜单关系表")
|
||||
public class WmsListElementFunction extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 3903166651913139061L;
|
||||
@Column(name = "FUNCTION_ID")
|
||||
@ApiParam(value = "功能菜单ID")
|
||||
private Long functionId;
|
||||
|
||||
@Column(name = "ELEMENT_ID")
|
||||
@ApiParam(value = "元素ID")
|
||||
private Long elementId;
|
||||
|
||||
@Column(name = "USER_CODE")
|
||||
@ApiParam(value = "用户编号")
|
||||
private String userCode;
|
||||
|
||||
@Column(name = "IS_DEFAULT")
|
||||
@ApiParam(value = "是否默认配置")
|
||||
private Integer isDefault;
|
||||
}
|
@ -0,0 +1,65 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean.dynamic;
|
||||
|
||||
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.Index;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : WMS搜索元素表
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2020-01-07 09:06
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_SEARCHELEMENT", indexes = {
|
||||
@Index(columnList = "FIELD_NAME"),
|
||||
@Index(columnList = "SEARCH_NAME"),
|
||||
@Index(columnList = "USER_CODE")
|
||||
})
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api(value="WMS搜索元素表",description = "WMS搜索元素表")
|
||||
public class WmsSearchElement extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 3903166651913139062L;
|
||||
|
||||
@Column(name = "FIELD_NAME")
|
||||
@ApiParam(value = "字段名称")
|
||||
private String fieldName;
|
||||
|
||||
@Column(name = "TITLE_NAME")
|
||||
@ApiParam(value = "标题名称")
|
||||
private String titleName;
|
||||
|
||||
@Column(name = "CONDITION_EXPRE")
|
||||
@ApiParam(value = "条件表达式:>,<,>=等")
|
||||
private String conditionExpre;
|
||||
|
||||
@Column(name = "VALUE")
|
||||
@ApiParam(value = "检索值")
|
||||
private String value;
|
||||
|
||||
@Column(name = "CONDITION_CONNECTOR")
|
||||
@ApiParam(value = "条件连接符:and/or")
|
||||
private String conditionConnector;
|
||||
|
||||
@Column(name = "SEARCH_NAME")
|
||||
@ApiParam(value = "搜索名称")
|
||||
private String searchName;
|
||||
|
||||
@Column(name = "USER_CODE")
|
||||
@ApiParam(value = "用户编号")
|
||||
private String userCode;
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean.dynamic;
|
||||
|
||||
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.Index;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : WMS搜索元素菜单关系表
|
||||
* @Reference :
|
||||
* @Author : sjc
|
||||
* @CreateDate : 2020-01-07 09:06
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="WMS_SEARCHELEMENT_FUNCTION", indexes = {
|
||||
@Index(columnList = "FUNCTION_ID"),
|
||||
@Index(columnList = "SEARCH_ELEMENT_ID"),
|
||||
@Index(columnList = "IS_SHARE"),
|
||||
@Index(columnList = "USER_CODE")
|
||||
})
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api(value="WMS搜索元素菜单关系表",description = "WMS搜索元素菜单关系表")
|
||||
public class WmsSearchElementFunction extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 3903166651913139063L;
|
||||
|
||||
@Column(name = "FUNCTION_ID")
|
||||
@ApiParam(value = "功能菜单ID")
|
||||
private Long functionId;
|
||||
|
||||
@Column(name = "GROUP_NAME")
|
||||
@ApiParam(value = "组名称")
|
||||
private String groupName;
|
||||
|
||||
@Column(name = "SEARCH_ELEMENT_ID")
|
||||
@ApiParam(value = "搜索元素ID")
|
||||
private Long searchElementId;
|
||||
|
||||
@Column(name = "GROUP_CONNECTOR")
|
||||
@ApiParam(value = "组条件连接符")
|
||||
private String groupConnector;
|
||||
|
||||
@Column(name = "USER_CODE")
|
||||
@ApiParam(value = "用户编号")
|
||||
private String userCode;
|
||||
|
||||
@Column(name = "IS_SHARE")
|
||||
@ApiParam(value = "是否共享")
|
||||
private Integer isShare;
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Data
|
||||
public class PushMessageModel {
|
||||
|
||||
|
||||
//标题
|
||||
public String title;
|
||||
//内容
|
||||
public String content;
|
||||
|
||||
//推送类型
|
||||
public String pushType;
|
||||
|
||||
//推送地址
|
||||
public String pathUrl;
|
||||
|
||||
//推送数据
|
||||
List<Map<Object,Object>> dataList;
|
||||
}
|
@ -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.BasVendor;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsDataMigrationConfig;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :WMS数据迁移配置实体
|
||||
* @Reference :
|
||||
* @Author : jessica.chen
|
||||
* @CreateDate : 2020-01-08 14:49
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsDataMigrationConfigRepository extends BaseRepository<WmsDataMigrationConfig, 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.dynamic.WmsFieldInfo;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : WMS字段信息表
|
||||
* @Reference :
|
||||
* @Author : sjc
|
||||
* @CreateDate : 2020-01-07 11:30
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsFieldInfoRepository extends BaseRepository<WmsFieldInfo, 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.dynamic.WmsListElementFunction;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : WMS列表元素菜单关系表
|
||||
* @Reference :
|
||||
* @Author : sjc
|
||||
* @CreateDate : 2020-01-07 11:30
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsListElementFunctionRepository extends BaseRepository<WmsListElementFunction, 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.dynamic.WmsListElement;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : WMS列表元素表
|
||||
* @Reference :
|
||||
* @Author : sjc
|
||||
* @CreateDate : 2020-01-07 11:30
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsListElementRepository extends BaseRepository<WmsListElement, Long> {
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsPushConfig;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsPushLog;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 推送日志配置信息
|
||||
* @Reference :
|
||||
* @Author : gcj
|
||||
* @CreateDate : 2020-01-06 9:47
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsPushConfigRepository extends BaseRepository<WmsPushConfig, Long> {
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
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 cn.estsh.i3plus.pojo.wms.bean.WmsPushLog;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 推送日志保存对象
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2020-01-06 9:47
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsPushLogRepository extends BaseRepository<WmsPushLog, 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.dynamic.WmsSearchElementFunction;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : WMS搜索元素菜单关系表
|
||||
* @Reference :
|
||||
* @Author : sjc
|
||||
* @CreateDate : 2020-01-07 11:30
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsSearchElementFunctionRepository extends BaseRepository<WmsSearchElementFunction, 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.dynamic.WmsSearchElement;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : WMS搜索元素表
|
||||
* @Reference :
|
||||
* @Author : sjc
|
||||
* @CreateDate : 2020-01-07 11:30
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsSearchElementRepository extends BaseRepository<WmsSearchElement, Long> {
|
||||
}
|
Loading…
Reference in New Issue