停机统计报表

yun-zuoyi
joke.wang 4 years ago
parent 6947405f44
commit 8b5447f5ca

@ -3,6 +3,7 @@ package cn.estsh.i3plus.pojo.andon.model;
import io.swagger.annotations.ApiParam; import io.swagger.annotations.ApiParam;
import lombok.Data; import lombok.Data;
import javax.persistence.Column;
import java.io.Serializable; import java.io.Serializable;
/** /**
@ -77,6 +78,18 @@ public class AndonBoardModel implements Serializable {
@ApiParam("停线时间比率") @ApiParam("停线时间比率")
private String downtimeRate; private String downtimeRate;
@ApiParam("周")
private Integer week;
@ApiParam(value = "事件原因代码")
public String ecCode;
@ApiParam(value = "事件原因描述")
public String ecNameRdd;
@ApiParam(value = "小时")
public String hour;
public int getTotalTimeVal() { public int getTotalTimeVal() {
return totalTime == null ? 0 : totalTime; return totalTime == null ? 0 : totalTime;
} }

@ -4796,7 +4796,8 @@ public class MesEnumUtil {
CANCEL(30, "取消"), CANCEL(30, "取消"),
OFFLINE(40, "下线"), OFFLINE(40, "下线"),
SHIPMENT(50, "发运"), SHIPMENT(50, "发运"),
SPECIAL(60, "特殊标识"); SPECIAL(60, "特殊标识"),
FORCE_REPORT_WORK(70, "强制报工");
private int value; private int value;
private String description; private String description;

@ -77,4 +77,8 @@ public class MesQueueJitActualBom extends BaseBean implements Serializable {
@Transient @Transient
@ApiParam("收货日期") @ApiParam("收货日期")
private String receiptDate; private String receiptDate;
@Transient
@ApiParam("选配类型")
private Integer optionType;
} }

@ -22,6 +22,7 @@ public class MgnBjAblePickModel {
private String clientInfo; private String clientInfo;
private String ip; private String ip;
private Integer port; private Integer port;
private boolean isBackOff;
private Integer timeout = 3000; private Integer timeout = 3000;
private Integer sleepTime = 2000; private Integer sleepTime = 2000;

Loading…
Cancel
Save