【合并冲突】
commit
87664b96cb
Binary file not shown.
@ -0,0 +1,68 @@
|
||||
package cn.estsh.i3plus.pojo.mes.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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/22 11:03 上午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_OFF_LINE_RECORD")
|
||||
@Api("MES_产品下线记录")
|
||||
public class MesOffLineRecord extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -2767323581134885752L;
|
||||
|
||||
@Column(name = "AREA_CODE")
|
||||
@ApiParam("区域代码")
|
||||
private String areaCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam("工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@Column(name = "SERIAL_NUMBER")
|
||||
@ApiParam("产品条码")
|
||||
private String serialNumber;
|
||||
|
||||
@Column(name = "QTY")
|
||||
@ApiParam("数量")
|
||||
private Double qty;
|
||||
|
||||
@Column(name = "WORK_ORDER_NO")
|
||||
@ApiParam("生产工单号")
|
||||
private String workOrderNo;
|
||||
|
||||
@Column(name = "OFF_LINE_TIME")
|
||||
@ApiParam("下线时间")
|
||||
private String offLineTime;
|
||||
}
|
@ -0,0 +1,51 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesBoardEquDetail;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesBoardEquStatus;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesBoardShiftSectionCapacity;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/21 6:55 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
public class BoardModel {
|
||||
|
||||
@ApiParam("看板名称")
|
||||
private String boardName;
|
||||
|
||||
@ApiParam("班别")
|
||||
private String shiftName;
|
||||
|
||||
@ApiParam("对象值描述")
|
||||
private String objectValueDesc;
|
||||
|
||||
@ApiParam("计划人数")
|
||||
private Integer planPeopleNum;
|
||||
|
||||
@ApiParam("实际人数")
|
||||
private Integer actualPeopleNum;
|
||||
|
||||
@ApiParam("计划产量")
|
||||
private Integer planCapacity;
|
||||
|
||||
@ApiParam("目标达成数")
|
||||
private Integer achievedNum;
|
||||
|
||||
@ApiParam("看板图片路径")
|
||||
private String pictureUrl;
|
||||
|
||||
@ApiParam("看板时段计划产量")
|
||||
private List<MesBoardShiftSectionCapacity> boardShiftSectionCapacityList;
|
||||
|
||||
@ApiParam("看板设备状态")
|
||||
private List<MesBoardEquStatus> boardEquStatusList;
|
||||
|
||||
@ApiParam("看板设备明细")
|
||||
private List<MesBoardEquDetail> boardEquDetailList;
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesOffLineRecord;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/22 11:10 上午
|
||||
* @Modify:
|
||||
*/
|
||||
@Repository
|
||||
public interface MesOffLineRecordRepository extends BaseRepository<MesOffLineRecord, Long> {
|
||||
}
|
@ -0,0 +1,48 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : Wms实体字段Model信息
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2020-04-24 09:53
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public class BasBeanFieldInfoModel implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -6376845639646448895L;
|
||||
|
||||
@ApiParam(value = "表名称")
|
||||
public String tableName;
|
||||
|
||||
@ApiParam(value = "表字段名称")
|
||||
private String fieldName;
|
||||
|
||||
@ApiParam(value = "表字段描述")
|
||||
private String fieldDesc;
|
||||
|
||||
@ApiParam(value = "表字段类型")
|
||||
private String fieldType;
|
||||
|
||||
@ApiParam(value = "主键")
|
||||
private String isFieldPrimaryKey;
|
||||
|
||||
@ApiParam(value = "非空")
|
||||
private String isFieldNull;
|
||||
|
||||
@ApiParam(value = "外键")
|
||||
private String isFieldForeignKey;
|
||||
|
||||
@ApiParam(value = "唯一约束")
|
||||
private String isFieldUnique;
|
||||
|
||||
@ApiParam(value = "自增")
|
||||
private String isFieldGeneric;
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
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-04-24 09:53
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public class BasBeanInfoModel implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -6376845639646448495L;
|
||||
|
||||
@ApiParam(value = "实体名称")
|
||||
public String entityName;
|
||||
|
||||
@ApiParam(value = "数据表名称")
|
||||
private String tableName;
|
||||
|
||||
@ApiParam(value = "数据表描述")
|
||||
private String tableDesc;
|
||||
|
||||
@ApiParam(value = "字段列表数据")
|
||||
private List<BasBeanFieldInfoModel> fieldInfoModelList;
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.common.Pager;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsDocMovementDetails;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2020-04-22 19:46
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class WmsMoveDetailsBySnModel implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -3023644672955363786L;
|
||||
|
||||
@ApiParam("明细数据")
|
||||
private List<WmsDocMovementDetails> detailsList;
|
||||
|
||||
@ApiParam("分页")
|
||||
private Pager pager;
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/2/12 17:41
|
||||
* @desc
|
||||
*/
|
||||
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name = "PTL_WINDOW")
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("PTL_界面")
|
||||
public class PtlWindow extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -1596443842758197995L;
|
||||
|
||||
@Column(name = "WINDOW_NO")
|
||||
@ApiParam("界面代码")
|
||||
private String windowNo;
|
||||
|
||||
@Column(name = "WINDOW_NAME")
|
||||
@ApiParam("界面名称")
|
||||
private String windowName;
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/2/12 17:41
|
||||
* @desc
|
||||
*/
|
||||
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name = "PTL_WINDOW_ELEMENT")
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("PTL_界面元素")
|
||||
public class PtlWindowElement extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -1596427582758197995L;
|
||||
|
||||
@Column(name = "WINDOW_NO")
|
||||
@ApiParam("界面代码")
|
||||
private String windowNo;
|
||||
|
||||
@Column(name = "ELEMENT_NO")
|
||||
@ApiParam("元素代码")
|
||||
private String elementNo;
|
||||
}
|
@ -1,49 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.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 java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/2/12 17:41
|
||||
* @desc
|
||||
*/
|
||||
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name = "PTL_WINDOW_ELEMENT_ATTRIBUTE")
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("PTL_界面元素属性")
|
||||
public class PtlWindowElementAttribute extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -1596427582758285995L;
|
||||
|
||||
@Column(name = "WINDOW_NO")
|
||||
@ApiParam("界面代码")
|
||||
private String windowNo;
|
||||
|
||||
@Column(name = "ELEMENT_NO")
|
||||
@ApiParam("元素代码")
|
||||
private String elementNo;
|
||||
|
||||
@Column(name = "ATTRIBUTE_NO")
|
||||
@ApiParam("属性代码")
|
||||
private String attributeNo;
|
||||
|
||||
@Column(name = "ATTRIBUTE_VALUE")
|
||||
@ApiParam("属性值")
|
||||
private String attributeValue;
|
||||
|
||||
}
|
@ -0,0 +1,97 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||
import com.alibaba.fastjson.annotation.JSONField;
|
||||
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 org.hibernate.annotations.GenericGenerator;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.Table;
|
||||
import javax.persistence.Transient;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : SOD_DET信息
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2020-04-22 16:12
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name="SOD_DET")
|
||||
@Api("SOD_DET信息")
|
||||
public class SodDet implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 539607553249262854L;
|
||||
|
||||
@Id
|
||||
@GeneratedValue(generator = "IDGenerator")
|
||||
@GenericGenerator(name = "IDGenerator", strategy = "assigned")
|
||||
@Column(name="ID")
|
||||
@ApiParam(value = "主键",example = "0")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.NUMBER)
|
||||
public Long id;
|
||||
|
||||
//get单独处理
|
||||
public Long getId() {
|
||||
if(id != null) {
|
||||
return id.longValue();
|
||||
}else{
|
||||
return id;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* MonogoDB _id映射
|
||||
* @param id
|
||||
*/
|
||||
@JSONField(name="_id")
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
@Column(name="COLUMN_GROUP")
|
||||
@ApiParam("分组列名")
|
||||
public String columnGroup;
|
||||
|
||||
@Column(name="COLUMN_GROUP_VALUE")
|
||||
@ApiParam("分组列名值")
|
||||
public String columnGroupValue;
|
||||
|
||||
@Column(name="PROPERTIES_NAME")
|
||||
@ApiParam("参数名")
|
||||
public String propertiesName;
|
||||
|
||||
@Column(name="PROPERTIES_VALUE")
|
||||
@ApiParam("参数值")
|
||||
public String propertiesValue;
|
||||
|
||||
@Column(name="table_name")
|
||||
@ApiParam("表名")
|
||||
public String tableName;
|
||||
|
||||
@Transient
|
||||
private String dockcode;
|
||||
|
||||
@Transient
|
||||
private String storagelocation;
|
||||
|
||||
@Transient
|
||||
private String requerimentCode;
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
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 : BH子检测项
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-04-23
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "WMS_BH_CHILD_DETECTION_ITEM")
|
||||
@Api("BH子检测项")
|
||||
public class WmsBhChildDetectionItem extends BaseBean {
|
||||
|
||||
@Column(name = "CHECK_TYPE")
|
||||
@ApiParam("检测大类")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "BH_CHECK_TYPE")
|
||||
private Integer checkType;
|
||||
|
||||
@Column(name = "ITEM_CHECK_CODE")
|
||||
@ApiParam("子检测项代码")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||
private String itemCheckCode;
|
||||
|
||||
@Column(name = "ITEM_CHECK_NAME")
|
||||
@ApiParam("子检测项名称")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||
private String itemCheckName;
|
||||
|
||||
@Column(name = "VALUE_TYPE")
|
||||
@ApiParam("值类型")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "BH_VALUE_TYPE")
|
||||
private Integer valueType;
|
||||
}
|
@ -0,0 +1,57 @@
|
||||
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-04-23
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "WMS_PART_CHECK_TYPE")
|
||||
@Api("物料检测大类")
|
||||
public class WmsPartCheckType extends BaseBean {
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("产线代码")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料号")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "PART_NAME")
|
||||
@ApiParam("物料名称")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||
private String partName;
|
||||
|
||||
@Column(name = "CHECK_TYPE")
|
||||
@ApiParam("检测大类")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "BH_CHECK_TYPE")
|
||||
private Integer checkType;
|
||||
|
||||
@Column(name = "SAMPLE_SIZE")
|
||||
@ApiParam("样本数")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
|
||||
private Integer sampleSize;
|
||||
}
|
@ -0,0 +1,77 @@
|
||||
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-04-23
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "WMS_PART_ITEM_CHECK")
|
||||
@Api("物料子检测项")
|
||||
public class WmsPartItemCheck extends BaseBean {
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("产线代码")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料号")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "CHECK_TYPE")
|
||||
@ApiParam("检测大类")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "BH_CHECK_TYPE")
|
||||
private Integer checkType;
|
||||
|
||||
@Column(name = "CHECK_ITEM_CODE")
|
||||
@ApiParam("子检测项代码")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||
private String checkItemCode;
|
||||
|
||||
@Column(name = "CHECK_ITEM_NAME")
|
||||
@ApiParam("子检测项名称")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||
private String checkItemName;
|
||||
|
||||
@Column(name = "VALUE_TYPE")
|
||||
@ApiParam("子检测箱值类型")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "BH_VALUE_TYPE")
|
||||
private Integer valueType;
|
||||
|
||||
@Column(name = "STANDARD")
|
||||
@ApiParam("标准值")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
|
||||
private Double standard;
|
||||
|
||||
@Column(name = "MAX")
|
||||
@ApiParam("最大值")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
|
||||
private Double max;
|
||||
|
||||
@Column(name = "MIN")
|
||||
@ApiParam("最小值")
|
||||
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
|
||||
private Double min;
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
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.ApiOperation;
|
||||
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 : puxiao.liao
|
||||
* @CreateDate : 2020-04-15 15:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "WMS_PURCHASE_PLAN_HISTORY")
|
||||
@Api("采购计划历史")
|
||||
public class WmsPurchasePlanHistory extends BaseBean {
|
||||
private static final long serialVersionUID = -8147353212724381079L;
|
||||
|
||||
@Column(name = "ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
private String orderNo;
|
||||
|
||||
@Column(name = "ITEM_STATUS")
|
||||
@ApiParam(value = "状态", example = "0")
|
||||
@AnnoOutputColumn(refClass = WmsEnumUtil.PURCHASE_PLAN_HISTORY_STATUS.class, refForeignKey = "value", value = "description")
|
||||
private Integer itemStatus;
|
||||
|
||||
@Column(name = "CAR_NO")
|
||||
@ApiParam("车牌号")
|
||||
private String carNo;
|
||||
|
||||
@Column(name = "CONTACT")
|
||||
@ApiParam("联系人")
|
||||
private String contact;
|
||||
|
||||
@Column(name = "CONTACT_TEL")
|
||||
@ApiParam("联系电话")
|
||||
private String contactTel;
|
||||
|
||||
@Column(name = "REMARK")
|
||||
@ApiParam("备注")
|
||||
private String remark;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
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 : 2020-04-23 11:03
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "WMS_TEST_RESULT_DETAILS")
|
||||
@Api("检测结果明细表")
|
||||
public class WmsTestResultDetails extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = -3295112411840494690L;
|
||||
@Column(name = "BH_CODE")
|
||||
@ApiParam("BH号")
|
||||
public String bhCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("产线代码")
|
||||
public String workCenterCode;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料号")
|
||||
public String partNo;
|
||||
|
||||
@Column(name = "PART_NAME")
|
||||
@ApiParam("物料名称")
|
||||
public String partName;
|
||||
|
||||
@Column(name = "CHECK_TYPE")
|
||||
@ApiParam("大检测项类型")
|
||||
public Integer checkType;
|
||||
|
||||
@Column(name = "qr_code")
|
||||
@ApiParam("二维码")
|
||||
public String qrCode;
|
||||
|
||||
@Column(name = "is_qualified")
|
||||
@ApiParam("是否合格")
|
||||
public Integer isQualified;
|
||||
|
||||
@Column(name = "check_value")
|
||||
@ApiParam("检测值")
|
||||
public String checkValue;
|
||||
}
|
@ -0,0 +1,79 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
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 : jimmy.zeng
|
||||
* @CreateDate : 2020-04-23 10:50
|
||||
* @Modify:
|
||||
**/
|
||||
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "WMS_TEST_RESULT_SUMMARY")
|
||||
@Api("检测结果汇总表")
|
||||
public class WmsTestResultSummary extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = -4600850017207281216L;
|
||||
|
||||
@Column(name = "BH_CODE")
|
||||
@ApiParam("BH号")
|
||||
public String bhCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("产线代码")
|
||||
public String workCenterCode;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料号")
|
||||
public String partNo;
|
||||
|
||||
@Column(name = "PART_NAME")
|
||||
@ApiParam("物料名称")
|
||||
public String partName;
|
||||
|
||||
@Column(name = "FLAG_NO")
|
||||
@ApiParam("客户发往地")
|
||||
public String flagNo;
|
||||
|
||||
@Column(name = "IS_QUALIFIED")
|
||||
@ApiParam("是否合格")
|
||||
public Integer isQualified;
|
||||
|
||||
@Column(name = "REWORK_STATUS")
|
||||
@ApiParam("返修状态")
|
||||
@AnnoOutputColumn(refClass = WmsEnumUtil.REWORK_STATUS.class, refForeignKey = "value", value = "description")
|
||||
public Integer reworkStatus;
|
||||
|
||||
@Column(name = "REWORK_RESULT")
|
||||
@ApiParam("返修结果")
|
||||
public Integer reworkResult;
|
||||
|
||||
@Column(name = "PICK_STATUS")
|
||||
@ApiParam("挑选状态")
|
||||
@AnnoOutputColumn(refClass = WmsEnumUtil.REWORK_STATUS.class, refForeignKey = "value", value = "description")
|
||||
|
||||
public Integer pickStatus;
|
||||
|
||||
@Column(name = "PICK_RESULT")
|
||||
@ApiParam("挑选结果")
|
||||
public Integer pickResult;
|
||||
|
||||
}
|
@ -0,0 +1,57 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import org.hibernate.annotations.GenericGenerator;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
|
||||
/**
|
||||
* @Description :窗口输出类
|
||||
* @Reference :
|
||||
* @Author :QianHuaSheng
|
||||
* @CreateDate : 2020-04-21 2:37 下午
|
||||
* @Modify:
|
||||
**/
|
||||
@Entity
|
||||
@Data
|
||||
@Api("窗口输出类")
|
||||
public class WmsCustWindowDto {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(generator = "IDGenerator")
|
||||
@GenericGenerator(name = "IDGenerator", strategy = "assigned")
|
||||
@Column(name = "ID")
|
||||
@ApiParam(value = "主键", example = "0")
|
||||
public Long id;
|
||||
|
||||
|
||||
@ApiParam(value = "窗口时间")
|
||||
private String custWindowTime;
|
||||
|
||||
@ApiParam(value = "星期一客户")
|
||||
private String mondayCust;
|
||||
|
||||
@ApiParam(value = "星期二客户")
|
||||
private String tuesdayCust;
|
||||
|
||||
@ApiParam(value = "星期三客户")
|
||||
private String wednesdayCust;
|
||||
|
||||
@ApiParam(value = "星期四客户")
|
||||
private String thursdayCust;
|
||||
|
||||
@ApiParam(value = "星期五客户")
|
||||
private String fridayCust;
|
||||
|
||||
@ApiParam(value = "星期六客户")
|
||||
private String saturdayCust;
|
||||
|
||||
@ApiParam(value = "星期日客户")
|
||||
private String sundayCust;
|
||||
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import org.hibernate.annotations.GenericGenerator;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
|
||||
/**
|
||||
* @Description :移动单效率(出参)
|
||||
* @Reference :
|
||||
* @Author :QianHuaSheng
|
||||
* @CreateDate : 2020-04-10 3:21 下午
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Api("移动单效率(出参)")
|
||||
public class WmsMoveMovementEffectivenessDto {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(generator = "IDGenerator")
|
||||
@GenericGenerator(name = "IDGenerator", strategy = "assigned")
|
||||
@Column(name = "ID")
|
||||
@ApiParam(value = "主键", example = "0")
|
||||
public Long id;
|
||||
|
||||
@ApiParam(value = "日期")
|
||||
private String date;
|
||||
|
||||
@ApiParam(value = "比列")
|
||||
private Double percentage;
|
||||
|
||||
public WmsMoveMovementEffectivenessDto(String date, Double percentage) {
|
||||
this.date = date;
|
||||
this.percentage = percentage;
|
||||
}
|
||||
|
||||
public WmsMoveMovementEffectivenessDto() {
|
||||
}
|
||||
}
|
@ -0,0 +1,75 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import org.hibernate.annotations.GenericGenerator;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
|
||||
/**
|
||||
* @Description :装车单打印输出model(出参)
|
||||
* @Reference :
|
||||
* @Author :QianHuaSheng
|
||||
* @CreateDate : 2020-04-10 3:21 下午
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Api("静态盘点查询输出实体类")
|
||||
public class WmsStockSnDto {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(generator = "IDGenerator")
|
||||
@GenericGenerator(name = "IDGenerator", strategy = "assigned")
|
||||
@Column(name = "ID")
|
||||
@ApiParam(value = "主键", example = "0")
|
||||
public Long id;
|
||||
|
||||
@ApiParam(value = "库位")
|
||||
private String locateNo;
|
||||
@ApiParam(value = "物料号")
|
||||
private String partNo;
|
||||
@ApiParam(value = "物料名称")
|
||||
private String partNameRdd;
|
||||
@ApiParam(value = "数量")
|
||||
private Double qty;
|
||||
@ApiParam(value = "生产批次")
|
||||
private String dateCode;
|
||||
|
||||
@ApiParam(value = "规格")
|
||||
private String partSpec;
|
||||
|
||||
@ApiParam(value = "存储区")
|
||||
private String zoneNo;
|
||||
|
||||
public WmsStockSnDto(String locateNo, String partNo, String partNameRdd, Double qty, String dateCode) {
|
||||
this.locateNo = locateNo;
|
||||
this.partNo = partNo;
|
||||
this.partNameRdd = partNameRdd;
|
||||
this.qty = qty;
|
||||
this.dateCode = dateCode;
|
||||
}
|
||||
|
||||
public WmsStockSnDto(String locateNo, String partNo, String partNameRdd, Double qty, String dateCode, String partSpec) {
|
||||
this.locateNo = locateNo;
|
||||
this.partNo = partNo;
|
||||
this.partNameRdd = partNameRdd;
|
||||
this.qty = qty;
|
||||
this.dateCode = dateCode;
|
||||
this.partSpec = partSpec;
|
||||
}
|
||||
|
||||
public WmsStockSnDto(String locateNo, String partNo, String partNameRdd, Double qty, String dateCode, String partSpec, String zoneNo) {
|
||||
this.locateNo = locateNo;
|
||||
this.partNo = partNo;
|
||||
this.partNameRdd = partNameRdd;
|
||||
this.qty = qty;
|
||||
this.dateCode = dateCode;
|
||||
this.partSpec = partSpec;
|
||||
this.zoneNo = zoneNo;
|
||||
}
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :供应商延期输出实体类(出参)
|
||||
* @Reference :
|
||||
* @Author :QianHuaSheng
|
||||
* @CreateDate : 2020-04-10 3:21 下午
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("供应商延期输出实体类")
|
||||
public class WmsSupplierExtensionDto {
|
||||
|
||||
@ApiParam(value = "序号")
|
||||
private Integer rn;
|
||||
|
||||
@ApiParam(value = "供应商编号")
|
||||
private String vendorNo;
|
||||
|
||||
@ApiParam(value = "数量")
|
||||
private Integer num;
|
||||
|
||||
public WmsSupplierExtensionDto() {
|
||||
|
||||
}
|
||||
|
||||
public WmsSupplierExtensionDto(String vendorNo, Integer num) {
|
||||
this.vendorNo = vendorNo;
|
||||
this.num = num;
|
||||
}
|
||||
}
|
@ -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.QadBop;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.SodDet;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : SOD_DET信息
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2020-01-09 15:06
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface SodDetRepository extends BaseRepository<SodDet, 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.WmsBhChildDetectionItem;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : BH子检测项
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-04-23
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsBhChildDetectionItemRepository extends BaseRepository<WmsBhChildDetectionItem, 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.WmsPartCheckType;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @Description : 物料检测大类
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-04-23
|
||||
* @Modify:
|
||||
**/
|
||||
@Service
|
||||
public interface WmsPartCheckTypeRepository extends BaseRepository<WmsPartCheckType, 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.WmsPartItemCheck;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 持久层物料子检测项
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2020-04-23
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsPartItemCheckRepository extends BaseRepository<WmsPartItemCheck, 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.WmsPurchasePlanHistory;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 采购计划历史dao层
|
||||
* @Reference :
|
||||
* @Author : puxiao.liao
|
||||
* @CreateDate : 2020-04-15 10:30
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsPurchasePlanHistoryRepository extends BaseRepository<WmsPurchasePlanHistory, 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.WmsTestResultDetails;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 检测结果明细表
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2020-04-23 11:03
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsTestResultDetailsRepository extends BaseRepository<WmsTestResultDetails, 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.WmsTestResultSummary;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 检测结果汇总表
|
||||
* @Reference :
|
||||
* @Author : jimmy.z
|
||||
* @CreateDate : 2020-04-23 11:03
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsTestResultSummaryRepository extends BaseRepository<WmsTestResultSummary, Long> {
|
||||
}
|
Loading…
Reference in New Issue