工艺规程增强
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
package com.klp.domain.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 工艺参数异常记录视图对象
|
||||
*/
|
||||
@Data
|
||||
public class WmsProcessAnomalyVo {
|
||||
|
||||
private Long anomalyId;
|
||||
private Long versionId;
|
||||
private Long planId;
|
||||
private Long paramId;
|
||||
private String coilId;
|
||||
private String enCoilId;
|
||||
private String paramCode;
|
||||
private String paramName;
|
||||
private String unit;
|
||||
private String anomalyType;
|
||||
private BigDecimal storedTarget;
|
||||
private BigDecimal storedUpper;
|
||||
private BigDecimal storedLower;
|
||||
private BigDecimal actualTarget;
|
||||
private BigDecimal actualMax;
|
||||
private BigDecimal actualMin;
|
||||
private BigDecimal deviationMax;
|
||||
private BigDecimal deviationMin;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date detectedAt;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date createTime;
|
||||
|
||||
private String remark;
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package com.klp.domain.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 版本钢卷服役记录视图对象
|
||||
*/
|
||||
@Data
|
||||
public class WmsProcessCoilRecordVo {
|
||||
|
||||
private Long recordId;
|
||||
private Long versionId;
|
||||
private String coilId;
|
||||
private String enCoilId;
|
||||
private Integer hasAnomaly;
|
||||
private Integer anomalyCnt;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date processTime;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date createTime;
|
||||
|
||||
private String remark;
|
||||
}
|
||||
@@ -41,6 +41,12 @@ public class WmsProcessPlanParamVo {
|
||||
@ExcelProperty(value = "单位")
|
||||
private String unit;
|
||||
|
||||
@ExcelProperty(value = "实际值来源钢卷号")
|
||||
private String actualSrcId;
|
||||
|
||||
@ExcelProperty(value = "L1设定值来源钢卷号")
|
||||
private String presetSrcId;
|
||||
|
||||
@ExcelProperty(value = "备注")
|
||||
private String remark;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user