Merge remote-tracking branch 'origin/dev' into dev
commit
8f899f2f46
@ -0,0 +1,83 @@
|
||||
package cn.estsh.i3plus.pojo.mes.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 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;
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description :IF_客户月度订单数据
|
||||
* @Reference :
|
||||
* @Author : jessica.chen
|
||||
* @CreateDate : 2020-11-06
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "IF_CUST_ORDER_DATA")
|
||||
@Api("IF_客户月度订单数据")
|
||||
public class IfCustOrderData extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 855289009053695346L;
|
||||
|
||||
@Column(name = "RGANIZTION_CODE")
|
||||
@ApiParam("工厂代码")
|
||||
private String rganiztionCode;
|
||||
|
||||
@Column(name = "CUSTOMER_CODE")
|
||||
@ApiParam("客户代码")
|
||||
private String customerCode;
|
||||
|
||||
@Column(name = "CUSTOMER_NAME")
|
||||
@ApiParam("客户名称")
|
||||
private String customerName;
|
||||
|
||||
@Column(name = "YEAR")
|
||||
@ApiParam("年")
|
||||
private Integer year;
|
||||
|
||||
@Column(name = "MONTH")
|
||||
@ApiParam("月")
|
||||
private Integer month;
|
||||
|
||||
@Column(name = "QTY")
|
||||
@ApiParam("订单数量")
|
||||
private Integer qty = 0;
|
||||
|
||||
@Column(name = "SYNC_STATUS")
|
||||
@ApiParam("同步状态")
|
||||
private Integer syncStatus;
|
||||
|
||||
@Column(name = "ERROR_MESSAGE")
|
||||
@ApiParam("异常消息")
|
||||
private String errorMessage;
|
||||
|
||||
@Column(name = "ACTION_CODE")
|
||||
@ApiParam("动作代码")
|
||||
private String actionCode;
|
||||
|
||||
@Column(name = "IF_CODE")
|
||||
@ApiParam("接口代码")
|
||||
private String ifCode;
|
||||
|
||||
@Transient
|
||||
@ApiParam("年度客户月度订单集合")
|
||||
private List<Map<String,Object>> ifCustOrderDataMap = new ArrayList<>();
|
||||
}
|
@ -0,0 +1,81 @@
|
||||
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.ColumnDefault;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Lob;
|
||||
import javax.persistence.Table;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: dominic
|
||||
* @CreateDate: 2020/10/29 14:11
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "IF_PACKAGE")
|
||||
@Api("料箱表")
|
||||
public class IfPackage extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 9099416791684702129L;
|
||||
|
||||
@Column(name = "PACKAGE_NO")
|
||||
@ApiParam("包装编号")
|
||||
private String packageNo;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "QTY", columnDefinition = "decimal(18,8)")
|
||||
@ColumnDefault("0")
|
||||
@ApiParam("数量")
|
||||
private Double qty;
|
||||
|
||||
@Column(name = "PORCESS_NAME")
|
||||
@ApiParam("工序名称")
|
||||
private String porcessName;
|
||||
|
||||
@Column(name = "RK_TYPE")
|
||||
@ApiParam("料架类型")
|
||||
private String rkType;
|
||||
|
||||
@Column(name = "ACTION_CODE")
|
||||
@ApiParam("动作代码")
|
||||
private String actionCode;
|
||||
|
||||
@Column(name = "ACTION_DATE_TIME")
|
||||
@ApiParam("操作时间")
|
||||
private String actionDateTime;
|
||||
|
||||
@Column(name = "ACTION_USER")
|
||||
@ApiParam("操作人")
|
||||
private String actionUser;
|
||||
|
||||
@Column(name = "ERROR_MESSAGE")
|
||||
@ApiParam("异常消息")
|
||||
private String errorMessage;
|
||||
|
||||
@Column(name = "IF_CODE")
|
||||
@ApiParam("接口代码")
|
||||
private String ifCode;
|
||||
|
||||
@Column(name = "SYNC_STATUS")
|
||||
@ApiParam("同步状态")
|
||||
private Integer syncStatus;
|
||||
|
||||
}
|
@ -0,0 +1,54 @@
|
||||
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.ColumnDefault;
|
||||
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 :mes看板车间配置
|
||||
* @Reference :
|
||||
* @Author : adair.song
|
||||
* @CreateDate : 2020-11-09
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BOARD_AREA")
|
||||
@Api("mes看板车间配置")
|
||||
public class MesBoardArea extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 4592603687011665216L;
|
||||
@Column(name = "BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name = "AREA_CODE")
|
||||
@ApiParam("区域代码")
|
||||
private String areaCode;
|
||||
|
||||
@Column(name = "PLAN_PASS_YIELD", columnDefinition = "decimal(18,3)")
|
||||
@ColumnDefault("0")
|
||||
@ApiParam("目标达成率")
|
||||
private Double planPassYield;
|
||||
|
||||
@Column(name = "YIELD_DIFF_VALUE", columnDefinition = "decimal(18,3)")
|
||||
@ColumnDefault("0")
|
||||
@ApiParam("上下偏差值")
|
||||
private Double yieldDiffValue;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
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 : MES_容器位置
|
||||
* @Reference :
|
||||
* @Author : dominic.xiao
|
||||
* @CreateDate : 2020-11-02 17:47
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_CONTAINER_LOCATION")
|
||||
@Api("MES_容器位置")
|
||||
public class MesContainerLocation extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 8181007288150974903L;
|
||||
|
||||
@Column(name = "CT_CODE")
|
||||
@ApiParam(value = "容器类型代码")
|
||||
private String ctCode;
|
||||
|
||||
@Column(name = "CT_LOCATION_NO")
|
||||
@ApiParam(value = "容器位置编号")
|
||||
private String ctLocationNo;
|
||||
|
||||
@Column(name = "LOCATION_CAPACITY")
|
||||
@ApiParam(value = "默认容量")
|
||||
private String locationCapacity;
|
||||
}
|
@ -0,0 +1,60 @@
|
||||
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 : MES_客户条码规则
|
||||
* @Reference :
|
||||
* @Author : dominic.xiao
|
||||
* @CreateDate : 2020-11-02 18:19
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_CUSTOMER_SN_RULE")
|
||||
@Api("MES_客户条码规则")
|
||||
public class MesCustomerSnRule extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -3928160156339420471L;
|
||||
|
||||
@Column(name = "CUSTOMER_CODE")
|
||||
@ApiParam(value = "客户代码")
|
||||
private String customerCode;
|
||||
|
||||
@Column(name = "CUSTOMER_PART_NO")
|
||||
@ApiParam(value = "客户零件号")
|
||||
private String customerPartNo;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam(value = "物料号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "LENGTH")
|
||||
@ApiParam(value = "长度")
|
||||
private Integer length;
|
||||
|
||||
@Column(name = "FROM1")
|
||||
@ApiParam(value = "起始1")
|
||||
private Integer from1;
|
||||
|
||||
@Column(name = "TO1")
|
||||
@ApiParam(value = "至1")
|
||||
private Integer to1;
|
||||
|
||||
@Column(name = "FIX1")
|
||||
@ApiParam(value = "内容1")
|
||||
private String fix1;
|
||||
}
|
@ -0,0 +1,39 @@
|
||||
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:
|
||||
* @Reference:
|
||||
* @Author: dominic
|
||||
* @CreateDate: 2020\11\13 09:59
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_DEFECT_LOCATION")
|
||||
@Api("产品缺陷位置")
|
||||
public class MesDefectLocation extends BaseBean implements Serializable {
|
||||
|
||||
@Column(name = "DEFECT_LOCATION")
|
||||
@ApiParam("缺陷位置代码")
|
||||
private String defectLocation;
|
||||
|
||||
@Column(name = "DEFECT_NAME")
|
||||
@ApiParam("缺陷位置名称")
|
||||
private String defectName;
|
||||
}
|
@ -0,0 +1,48 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Description : MES_产品容器容量配置
|
||||
* @Reference :
|
||||
* @Author : dominic.xiao
|
||||
* @CreateDate : 2020-11-02 18:04
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_PART_CONTAINER_CAPACITY")
|
||||
@Api("MES_产品容器容量配置")
|
||||
public class MesPartContainerCapacity extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 6438819635320965628L;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam(value = "物料编码")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "CT_CODE")
|
||||
@ApiParam(value = "容器类型代码")
|
||||
private String ctCode;
|
||||
|
||||
@Column(name = "CT_LOCATION_NO")
|
||||
@ApiParam(value = "容器位置编号")
|
||||
private String ctLocationNo;
|
||||
|
||||
@Column(name = "CT_QTY")
|
||||
@ApiParam(value = "容量")
|
||||
private Integer ctQty;
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesDefect;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class AssembleDefectModel {
|
||||
|
||||
@ApiParam("组织代码")
|
||||
private String organizeCode;
|
||||
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@ApiParam("工单号")
|
||||
private String workOrderNo;
|
||||
|
||||
@ApiParam("过程条码")
|
||||
private String serialNumber;
|
||||
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam("抛光层级model")
|
||||
private AssembleDefectModel polishingModel;
|
||||
|
||||
@ApiParam("拆解层级model")
|
||||
private AssembleDefectModel disassembleModel;
|
||||
|
||||
@ApiParam("不良类型集合")
|
||||
private List<AssembleDefectModel> defectModelList;
|
||||
|
||||
@ApiParam("类型代码")
|
||||
private String typeCode;
|
||||
|
||||
@ApiParam("类型名称")
|
||||
private String typeName;
|
||||
|
||||
@ApiParam("不良集合")
|
||||
private List<MesDefect> defectList;
|
||||
|
||||
}
|
@ -0,0 +1,31 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description: 中航-产线状态图
|
||||
* @CreateDate: 2020/11/2
|
||||
* @Author: simon.song
|
||||
*/
|
||||
@Data
|
||||
public class MesBoardWorkCenterStatusModel {
|
||||
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@ApiParam("工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@ApiParam("实时节拍")
|
||||
private String realTimeTakt;
|
||||
|
||||
@ApiParam("工位状态列表")
|
||||
private List<MesWorkCellStatusModel> workCellStatusList;
|
||||
|
||||
@ApiParam("工位停线原因")
|
||||
private List<MesAndonManageQueueModel> workCellStopLineList;
|
||||
|
||||
}
|
@ -0,0 +1,91 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
public class MesQcOrderDetailRecordModel implements Serializable {
|
||||
private static final long serialVersionUID = -7216132883079491432L;
|
||||
|
||||
@ApiParam("检测人")
|
||||
private String createUser;
|
||||
|
||||
@ApiParam("检测时间")
|
||||
private String createDatetime;
|
||||
|
||||
@ApiParam("质检单号")
|
||||
private String orderNo;
|
||||
|
||||
@ApiParam("判定结果")
|
||||
private Integer checkResult = 0;
|
||||
|
||||
@ApiParam("检测值")
|
||||
private String checkValue;
|
||||
|
||||
@ApiParam("产品条码")
|
||||
private String serialNumber;
|
||||
|
||||
@ApiParam("检测顺序")
|
||||
private Integer checkSeq;
|
||||
|
||||
|
||||
@ApiParam("检测类型")
|
||||
private Integer checkType;
|
||||
|
||||
@ApiParam("检测项类型")
|
||||
private String checkItemType;
|
||||
|
||||
@ApiParam("检测项")
|
||||
private String checkItem;
|
||||
|
||||
@ApiParam("检测标准")
|
||||
private String checkStandard;
|
||||
|
||||
@ApiParam("检测指导")
|
||||
private String checkGuide;
|
||||
|
||||
@ApiParam("频率")
|
||||
private String checkFrequency;
|
||||
|
||||
@ApiParam("是否允许让步")
|
||||
private Integer isConcession = 0;
|
||||
|
||||
@ApiParam("检验行号")
|
||||
private Integer itemNo = 0;
|
||||
|
||||
// @ApiParam("产品条码")
|
||||
// private String serialNumber;
|
||||
|
||||
@ApiParam("数量")
|
||||
private Integer qty;
|
||||
|
||||
@ApiParam("已检数量")
|
||||
private Integer finishQty;
|
||||
|
||||
@ApiParam("最大数")
|
||||
private Double maximum = 0d;
|
||||
|
||||
@ApiParam("最小数")
|
||||
private Double minimum = 0d;
|
||||
|
||||
@ApiParam("产线")
|
||||
private String workCenterCode;
|
||||
|
||||
@ApiParam("工位")
|
||||
private String workCellCode;
|
||||
|
||||
@ApiParam("数据源")
|
||||
private String dataSource;
|
||||
|
||||
@ApiParam("检测值类型")
|
||||
private String checkValueType;
|
||||
|
||||
@ApiParam("是否关键检测项")
|
||||
private Integer isKeyCheckItem;
|
||||
|
||||
@ApiParam(value = "检测项类型名称")
|
||||
private String businessTypeName;
|
||||
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class MesWorkCellStatusModel {
|
||||
|
||||
@ApiParam("工位运行状态")
|
||||
private String cellStatus;
|
||||
|
||||
@ApiParam("工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class MgnBoardListColorModel {
|
||||
|
||||
@ApiParam("产线")
|
||||
private String workCenterCode;
|
||||
|
||||
@ApiParam("颜色")
|
||||
private String color;
|
||||
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/3/9 15:35
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
public class TjMgnBoardEquipmentMonitorModel {
|
||||
|
||||
@ApiParam("工位")
|
||||
private String workCellCode;
|
||||
|
||||
@ApiParam("横坐标")
|
||||
private Double xAxes = 0d;
|
||||
|
||||
@ApiParam("纵坐标")
|
||||
private Double yAxes = 0d;
|
||||
|
||||
@ApiParam("工位状态")
|
||||
private String workCellStatus;
|
||||
|
||||
@ApiParam("颜色")
|
||||
private String color;
|
||||
}
|
@ -1,41 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/10/28 11:27 AM
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
public class BjBoardModel implements Serializable {
|
||||
|
||||
@ApiParam("jsa数量")
|
||||
private Integer jsaQty;
|
||||
@ApiParam("完成数量")
|
||||
private Integer completeQty;
|
||||
@ApiParam("总数量")
|
||||
private Integer totalQty;
|
||||
@ApiParam("预警数量")
|
||||
private Integer warnQty;
|
||||
@ApiParam("预警率")
|
||||
private Integer warnRate;
|
||||
@ApiParam("目标合格率")
|
||||
private Integer targetRate = 0;
|
||||
@ApiParam("一次合格率")
|
||||
private Integer onceQualityRate = 0;
|
||||
|
||||
@ApiParam("x坐标内容")
|
||||
private String xAxis;
|
||||
|
||||
@ApiParam("x坐标内容")
|
||||
private List<String> xAxisList;
|
||||
|
||||
@ApiParam("显示数据")
|
||||
private List<BjBoardSeriesModel> seriesModels;
|
||||
}
|
@ -0,0 +1,77 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/10/28 11:27 AM
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
public class MgnBjBoardModel implements Serializable {
|
||||
|
||||
private Integer qty;
|
||||
@ApiParam("jsa数量")
|
||||
private Integer jsaQty;
|
||||
@ApiParam("jsa数量")
|
||||
private Integer jsaRate;
|
||||
@ApiParam("完成数量")
|
||||
private Integer completeQty;
|
||||
@ApiParam("完成率")
|
||||
private Integer completeRate;
|
||||
@ApiParam("总数量")
|
||||
private Integer totalQty;
|
||||
@ApiParam("预警数量")
|
||||
private Integer warnQty;
|
||||
@ApiParam("预警率")
|
||||
private Integer warnRate;
|
||||
@ApiParam("目标数量")
|
||||
private Integer targetQty;
|
||||
@ApiParam("计划 数量")
|
||||
private Integer planQty;
|
||||
@ApiParam("目标合格率")
|
||||
private Integer targetRate = 0;
|
||||
@ApiParam("一次合格率")
|
||||
private Integer onceQualityRate = 0;
|
||||
@ApiParam("待生产订单数量")
|
||||
private Integer waitProduceQty = 0;
|
||||
@ApiParam("低于安全库存")
|
||||
private Integer minStockQty;
|
||||
@ApiParam("超出最大库存")
|
||||
private Integer maxStockQty;
|
||||
|
||||
@ApiParam(value = "显示颜色")
|
||||
private String color;
|
||||
|
||||
@ApiParam("x坐标内容")
|
||||
private String xAxis;
|
||||
|
||||
@ApiParam("班次名称")
|
||||
private String shiftName;
|
||||
|
||||
@ApiParam("班次人数")
|
||||
private Integer shiftNum;
|
||||
|
||||
@ApiParam("产品位置代码")
|
||||
private String produceCategoryCode;
|
||||
|
||||
@ApiParam("产品位置名称")
|
||||
private String produceCtgyName;
|
||||
|
||||
@ApiParam("时段")
|
||||
private String timeInterval;
|
||||
|
||||
@ApiParam("x坐标内容")
|
||||
private List<String> xAxisList;
|
||||
|
||||
private Map<String, Object> resultMap;
|
||||
|
||||
@ApiParam("显示数据")
|
||||
private List<MgnBjBoardSeriesModel> seriesModels;
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import lombok.Data;
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import lombok.Data;
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import lombok.Data;
|
@ -1,5 +1,6 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi.Pn;
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import com.thoughtworks.xstream.annotations.XStreamImplicit;
|
||||
import lombok.Data;
|
@ -1,5 +1,6 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi.Part;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import org.apache.commons.lang3.StringUtils;
|
@ -1,5 +1,6 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi.Part;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import lombok.Data;
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import lombok.Data;
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import io.swagger.annotations.ApiParam;
|
@ -0,0 +1,9 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.IfCustOrderData;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface IfCustOrderDataRepository extends BaseRepository<IfCustOrderData, Long> {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesBoardArea;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: joke.wang
|
||||
* @CreateDate: 2019\11\13 11:53
|
||||
* @Modify:
|
||||
**/
|
||||
public interface MesBoardAreaRepository extends BaseRepository<MesBoardArea, Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesContainerLocation;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: dominic
|
||||
* @CreateDate: 2020\11\4 11:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesContainerLocationRepository extends BaseRepository<MesContainerLocation, Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesCustomerSnRule;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: dominic
|
||||
* @CreateDate: 2020\11\4 11:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesCustomerSnRuleRepository extends BaseRepository<MesCustomerSnRule, Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesPartContainerCapacity;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: dominic
|
||||
* @CreateDate: 2020\11\4 11:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesPartContainerCapacityRepository extends BaseRepository<MesPartContainerCapacity, Long> {
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue