工艺规程增强
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;
|
||||
}
|
||||
Reference in New Issue
Block a user