添加QCflag参数实体
This commit is contained in:
parent
7425a3909a
commit
029891c686
|
@ -0,0 +1,11 @@
|
||||||
|
package org.jeecg.modules.base.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class SampNucl {
|
||||||
|
|
||||||
|
private String sampleId;
|
||||||
|
|
||||||
|
private String nuclideName;
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
package org.jeecg.modules.base.enums;
|
||||||
|
|
||||||
|
public enum StationDetailType {
|
||||||
|
SAUNA,
|
||||||
|
SAUNA2,
|
||||||
|
SPALAX,
|
||||||
|
SPALAX_PLC,
|
||||||
|
Car,
|
||||||
|
LAB,
|
||||||
|
CINDER,
|
||||||
|
RASA,
|
||||||
|
ARIX_2
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
package org.jeecg.modules.entity.vo.QCFlagParmData;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
public class ParamConfig {
|
||||||
|
@XmlElement(name = "collectionTime")
|
||||||
|
private RuleGroup collectionTime;
|
||||||
|
|
||||||
|
@XmlElement(name = "acquisitionTime")
|
||||||
|
private RuleGroup acquisitionTime;
|
||||||
|
|
||||||
|
@XmlElement(name = "xeVolume")
|
||||||
|
private RuleGroup xeVolume;
|
||||||
|
|
||||||
|
@XmlElement(name = "airVolume")
|
||||||
|
private RuleGroup airVolume;
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
package org.jeecg.modules.entity.vo.QCFlagParmData;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
|
||||||
|
@XmlRootElement(name = "config")
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
public class QCFlagParam {
|
||||||
|
@XmlElement(name = "sauna")
|
||||||
|
public ParamConfig sauna;
|
||||||
|
|
||||||
|
@XmlElement(name = "sauna2")
|
||||||
|
public ParamConfig sauna2;
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
package org.jeecg.modules.entity.vo.QCFlagParmData;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
public class Rule {
|
||||||
|
@XmlAttribute(name = "min")
|
||||||
|
private double min;
|
||||||
|
|
||||||
|
@XmlAttribute(name = "max")
|
||||||
|
private Double max; // 使用Double以便可以为null(表示没有上限)
|
||||||
|
|
||||||
|
@XmlAttribute(name = "color")
|
||||||
|
private String color;
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
package org.jeecg.modules.entity.vo.QCFlagParmData;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
public class RuleGroup {
|
||||||
|
@XmlElement(name = "Rule")
|
||||||
|
List<Rule> rules;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user