|
@@ -28,7 +28,7 @@ public class ZAssayResult
|
|
|
private String sampleNo;
|
|
|
|
|
|
/** 样品体积 */
|
|
|
- private Long sampleVolume;
|
|
|
+ private Double sampleVolume;
|
|
|
|
|
|
/** 化验设备编号 */
|
|
|
private String deviceNo;
|
|
@@ -37,10 +37,10 @@ public class ZAssayResult
|
|
|
private String assayItem;
|
|
|
|
|
|
/** 化验浓度值 */
|
|
|
- private Long resultConcentration;
|
|
|
+ private Double resultConcentration;
|
|
|
|
|
|
/** 化验ABS值(吸光度) */
|
|
|
- private Long resultAbs;
|
|
|
+ private Double resultAbs;
|
|
|
|
|
|
/** 结果日期 */
|
|
|
private String resultDate;
|
|
@@ -49,49 +49,49 @@ public class ZAssayResult
|
|
|
private String resultTime;
|
|
|
|
|
|
/** 曲线k0 */
|
|
|
- private Long curveK0;
|
|
|
+ private Double curveK0;
|
|
|
|
|
|
/** 曲线k1 */
|
|
|
- private Long curveK1;
|
|
|
+ private Double curveK1;
|
|
|
|
|
|
/** 曲线唯一id */
|
|
|
private Long curveId;
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
- private Long j1901S01;
|
|
|
+ private Double j1901S01;
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
- private Long j1901D01;
|
|
|
+ private Double j1901D01;
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
- private Long j1901R01;
|
|
|
+ private Double j1901R01;
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
- private Long j1901S1;
|
|
|
+ private Double j1901S1;
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
- private Long j1901D1;
|
|
|
+ private Double j1901D1;
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
- private Long j1901R1;
|
|
|
+ private Double j1901R1;
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
- private Long j1901S02;
|
|
|
+ private Double j1901S02;
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
- private Long j1901D02;
|
|
|
+ private Double j1901D02;
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
- private Long j1901R02;
|
|
|
+ private Double j1901R02;
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
- private Long j1901S2;
|
|
|
+ private Double j1901S2;
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
- private Long j1901D2;
|
|
|
+ private Double j1901D2;
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
- private Long j1901R2;
|
|
|
+ private Double j1901R2;
|
|
|
|
|
|
/** 化验分类 */
|
|
|
private String assayType;
|
|
@@ -100,13 +100,13 @@ public class ZAssayResult
|
|
|
private Long samplePost;
|
|
|
|
|
|
/** 化验温度 */
|
|
|
- private Long resultWendu;
|
|
|
+ private Double resultWendu;
|
|
|
|
|
|
/** 化验湿度 */
|
|
|
- private Long resultShidu;
|
|
|
+ private Double resultShidu;
|
|
|
|
|
|
/** 原始浓度值 */
|
|
|
- private Long originalConcentration;
|
|
|
+ private Double originalConcentration;
|
|
|
|
|
|
/** 曲线编号 */
|
|
|
private String curveNo;
|
|
@@ -117,370 +117,360 @@ public class ZAssayResult
|
|
|
/** $column.columnComment */
|
|
|
private Date cPangusyncsourcetimestamp;
|
|
|
|
|
|
- /** 创建者 */
|
|
|
- private String createBy;
|
|
|
+
|
|
|
+ //SqlServer存放的是字符串,所以这里要改成字符串类型
|
|
|
|
|
|
/** 创建时间 */
|
|
|
-// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private String createTime;
|
|
|
|
|
|
- /** 更新者 */
|
|
|
- private String updateBy;
|
|
|
+ /** 创建者 */
|
|
|
+ private String createBy;
|
|
|
|
|
|
/** 更新时间 */
|
|
|
-// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private String updateTime;
|
|
|
|
|
|
- //2025年03月10日11:24:24 新增请求参数
|
|
|
- //记录ID 用于筛选大于此ID的数据
|
|
|
- private Long id;
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCreateBy() {
|
|
|
- return createBy;
|
|
|
- }
|
|
|
+ /** 更新者 */
|
|
|
+ private String updateBy;
|
|
|
|
|
|
- public void setCreateBy(String createBy) {
|
|
|
- this.createBy = createBy;
|
|
|
- }
|
|
|
|
|
|
- public String getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
+ //请求参数
|
|
|
+ /** 开始时间 */
|
|
|
+// @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ private String timeBegin;
|
|
|
|
|
|
- public void setCreateTime(String createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
+ /** 截止时间 */
|
|
|
+// @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ private String timeEnd;
|
|
|
|
|
|
- public String getUpdateBy() {
|
|
|
- return updateBy;
|
|
|
- }
|
|
|
+ //2025年03月10日11:24:24 新增请求参数
|
|
|
+ //记录ID 用于筛选大于此ID的数据
|
|
|
+ private Long id;
|
|
|
|
|
|
- public void setUpdateBy(String updateBy) {
|
|
|
- this.updateBy = updateBy;
|
|
|
+ public String getResultDate() {
|
|
|
+ return resultDate;
|
|
|
}
|
|
|
|
|
|
- public String getUpdateTime() {
|
|
|
- return updateTime;
|
|
|
+ public void setResultDate(String resultDate) {
|
|
|
+ this.resultDate = resultDate;
|
|
|
}
|
|
|
|
|
|
- public void setUpdateTime(String updateTime) {
|
|
|
- this.updateTime = updateTime;
|
|
|
+ public Long getResultId() {
|
|
|
+ return resultId;
|
|
|
}
|
|
|
|
|
|
- public void setResultId(Long resultId)
|
|
|
- {
|
|
|
+ public void setResultId(Long resultId) {
|
|
|
this.resultId = resultId;
|
|
|
}
|
|
|
|
|
|
- public Long getResultId()
|
|
|
- {
|
|
|
- return resultId;
|
|
|
+ public String getAssayNo() {
|
|
|
+ return assayNo;
|
|
|
}
|
|
|
- public void setAssayNo(String assayNo)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setAssayNo(String assayNo) {
|
|
|
this.assayNo = assayNo;
|
|
|
}
|
|
|
|
|
|
- public String getAssayNo()
|
|
|
- {
|
|
|
- return assayNo;
|
|
|
+ public String getResultNo() {
|
|
|
+ return resultNo;
|
|
|
}
|
|
|
- public void setResultNo(String resultNo)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setResultNo(String resultNo) {
|
|
|
this.resultNo = resultNo;
|
|
|
}
|
|
|
|
|
|
- public String getResultNo()
|
|
|
- {
|
|
|
- return resultNo;
|
|
|
+ public String getSampleNo() {
|
|
|
+ return sampleNo;
|
|
|
}
|
|
|
- public void setSampleNo(String sampleNo)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setSampleNo(String sampleNo) {
|
|
|
this.sampleNo = sampleNo;
|
|
|
}
|
|
|
|
|
|
- public String getSampleNo()
|
|
|
- {
|
|
|
- return sampleNo;
|
|
|
+ public Double getSampleVolume() {
|
|
|
+ return sampleVolume;
|
|
|
}
|
|
|
- public void setSampleVolume(Long sampleVolume)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setSampleVolume(Double sampleVolume) {
|
|
|
this.sampleVolume = sampleVolume;
|
|
|
}
|
|
|
|
|
|
- public Long getSampleVolume()
|
|
|
- {
|
|
|
- return sampleVolume;
|
|
|
+ public String getDeviceNo() {
|
|
|
+ return deviceNo;
|
|
|
}
|
|
|
- public void setDeviceNo(String deviceNo)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setDeviceNo(String deviceNo) {
|
|
|
this.deviceNo = deviceNo;
|
|
|
}
|
|
|
|
|
|
- public String getDeviceNo()
|
|
|
- {
|
|
|
- return deviceNo;
|
|
|
+ public String getAssayItem() {
|
|
|
+ return assayItem;
|
|
|
}
|
|
|
- public void setAssayItem(String assayItem)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setAssayItem(String assayItem) {
|
|
|
this.assayItem = assayItem;
|
|
|
}
|
|
|
|
|
|
- public String getAssayItem()
|
|
|
- {
|
|
|
- return assayItem;
|
|
|
+ public Double getResultConcentration() {
|
|
|
+ return resultConcentration;
|
|
|
}
|
|
|
- public void setResultConcentration(Long resultConcentration)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setResultConcentration(Double resultConcentration) {
|
|
|
this.resultConcentration = resultConcentration;
|
|
|
}
|
|
|
|
|
|
- public Long getResultConcentration()
|
|
|
- {
|
|
|
- return resultConcentration;
|
|
|
+ public Double getResultAbs() {
|
|
|
+ return resultAbs;
|
|
|
}
|
|
|
- public void setResultAbs(Long resultAbs)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setResultAbs(Double resultAbs) {
|
|
|
this.resultAbs = resultAbs;
|
|
|
}
|
|
|
|
|
|
- public Long getResultAbs()
|
|
|
- {
|
|
|
- return resultAbs;
|
|
|
- }
|
|
|
- public void setResultDate(String resultDate)
|
|
|
- {
|
|
|
- this.resultDate = resultDate;
|
|
|
+ public String getResultTime() {
|
|
|
+ return resultTime;
|
|
|
}
|
|
|
|
|
|
- public String getResultDate()
|
|
|
- {
|
|
|
- return resultDate;
|
|
|
- }
|
|
|
- public void setResultTime(String resultTime)
|
|
|
- {
|
|
|
+ public void setResultTime(String resultTime) {
|
|
|
this.resultTime = resultTime;
|
|
|
}
|
|
|
|
|
|
- public String getResultTime()
|
|
|
- {
|
|
|
- return resultTime;
|
|
|
+ public Double getCurveK0() {
|
|
|
+ return curveK0;
|
|
|
}
|
|
|
- public void setCurveK0(Long curveK0)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setCurveK0(Double curveK0) {
|
|
|
this.curveK0 = curveK0;
|
|
|
}
|
|
|
|
|
|
- public Long getCurveK0()
|
|
|
- {
|
|
|
- return curveK0;
|
|
|
+ public Double getCurveK1() {
|
|
|
+ return curveK1;
|
|
|
}
|
|
|
- public void setCurveK1(Long curveK1)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setCurveK1(Double curveK1) {
|
|
|
this.curveK1 = curveK1;
|
|
|
}
|
|
|
|
|
|
- public Long getCurveK1()
|
|
|
- {
|
|
|
- return curveK1;
|
|
|
+ public Long getCurveId() {
|
|
|
+ return curveId;
|
|
|
}
|
|
|
- public void setCurveId(Long curveId)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setCurveId(Long curveId) {
|
|
|
this.curveId = curveId;
|
|
|
}
|
|
|
|
|
|
- public Long getCurveId()
|
|
|
- {
|
|
|
- return curveId;
|
|
|
+ public Double getJ1901S01() {
|
|
|
+ return j1901S01;
|
|
|
}
|
|
|
- public void setJ1901S01(Long j1901S01)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setJ1901S01(Double j1901S01) {
|
|
|
this.j1901S01 = j1901S01;
|
|
|
}
|
|
|
|
|
|
- public Long getJ1901S01()
|
|
|
- {
|
|
|
- return j1901S01;
|
|
|
+ public Double getJ1901D01() {
|
|
|
+ return j1901D01;
|
|
|
}
|
|
|
- public void setJ1901D01(Long j1901D01)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setJ1901D01(Double j1901D01) {
|
|
|
this.j1901D01 = j1901D01;
|
|
|
}
|
|
|
|
|
|
- public Long getJ1901D01()
|
|
|
- {
|
|
|
- return j1901D01;
|
|
|
+ public Double getJ1901R01() {
|
|
|
+ return j1901R01;
|
|
|
}
|
|
|
- public void setJ1901R01(Long j1901R01)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setJ1901R01(Double j1901R01) {
|
|
|
this.j1901R01 = j1901R01;
|
|
|
}
|
|
|
|
|
|
- public Long getJ1901R01()
|
|
|
- {
|
|
|
- return j1901R01;
|
|
|
+ public Double getJ1901S1() {
|
|
|
+ return j1901S1;
|
|
|
}
|
|
|
- public void setJ1901S1(Long j1901S1)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setJ1901S1(Double j1901S1) {
|
|
|
this.j1901S1 = j1901S1;
|
|
|
}
|
|
|
|
|
|
- public Long getJ1901S1()
|
|
|
- {
|
|
|
- return j1901S1;
|
|
|
+ public Double getJ1901D1() {
|
|
|
+ return j1901D1;
|
|
|
}
|
|
|
- public void setJ1901D1(Long j1901D1)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setJ1901D1(Double j1901D1) {
|
|
|
this.j1901D1 = j1901D1;
|
|
|
}
|
|
|
|
|
|
- public Long getJ1901D1()
|
|
|
- {
|
|
|
- return j1901D1;
|
|
|
+ public Double getJ1901R1() {
|
|
|
+ return j1901R1;
|
|
|
}
|
|
|
- public void setJ1901R1(Long j1901R1)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setJ1901R1(Double j1901R1) {
|
|
|
this.j1901R1 = j1901R1;
|
|
|
}
|
|
|
|
|
|
- public Long getJ1901R1()
|
|
|
- {
|
|
|
- return j1901R1;
|
|
|
+ public Double getJ1901S02() {
|
|
|
+ return j1901S02;
|
|
|
}
|
|
|
- public void setJ1901S02(Long j1901S02)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setJ1901S02(Double j1901S02) {
|
|
|
this.j1901S02 = j1901S02;
|
|
|
}
|
|
|
|
|
|
- public Long getJ1901S02()
|
|
|
- {
|
|
|
- return j1901S02;
|
|
|
+ public Double getJ1901D02() {
|
|
|
+ return j1901D02;
|
|
|
}
|
|
|
- public void setJ1901D02(Long j1901D02)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setJ1901D02(Double j1901D02) {
|
|
|
this.j1901D02 = j1901D02;
|
|
|
}
|
|
|
|
|
|
- public Long getJ1901D02()
|
|
|
- {
|
|
|
- return j1901D02;
|
|
|
+ public Double getJ1901R02() {
|
|
|
+ return j1901R02;
|
|
|
}
|
|
|
- public void setJ1901R02(Long j1901R02)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setJ1901R02(Double j1901R02) {
|
|
|
this.j1901R02 = j1901R02;
|
|
|
}
|
|
|
|
|
|
- public Long getJ1901R02()
|
|
|
- {
|
|
|
- return j1901R02;
|
|
|
+ public Double getJ1901S2() {
|
|
|
+ return j1901S2;
|
|
|
}
|
|
|
- public void setJ1901S2(Long j1901S2)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setJ1901S2(Double j1901S2) {
|
|
|
this.j1901S2 = j1901S2;
|
|
|
}
|
|
|
|
|
|
- public Long getJ1901S2()
|
|
|
- {
|
|
|
- return j1901S2;
|
|
|
+ public Double getJ1901D2() {
|
|
|
+ return j1901D2;
|
|
|
}
|
|
|
- public void setJ1901D2(Long j1901D2)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setJ1901D2(Double j1901D2) {
|
|
|
this.j1901D2 = j1901D2;
|
|
|
}
|
|
|
|
|
|
- public Long getJ1901D2()
|
|
|
- {
|
|
|
- return j1901D2;
|
|
|
+ public Double getJ1901R2() {
|
|
|
+ return j1901R2;
|
|
|
}
|
|
|
- public void setJ1901R2(Long j1901R2)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setJ1901R2(Double j1901R2) {
|
|
|
this.j1901R2 = j1901R2;
|
|
|
}
|
|
|
|
|
|
- public Long getJ1901R2()
|
|
|
- {
|
|
|
- return j1901R2;
|
|
|
+ public String getAssayType() {
|
|
|
+ return assayType;
|
|
|
}
|
|
|
- public void setAssayType(String assayType)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setAssayType(String assayType) {
|
|
|
this.assayType = assayType;
|
|
|
}
|
|
|
|
|
|
- public String getAssayType()
|
|
|
- {
|
|
|
- return assayType;
|
|
|
+ public Long getSamplePost() {
|
|
|
+ return samplePost;
|
|
|
}
|
|
|
- public void setSamplePost(Long samplePost)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setSamplePost(Long samplePost) {
|
|
|
this.samplePost = samplePost;
|
|
|
}
|
|
|
|
|
|
- public Long getSamplePost()
|
|
|
- {
|
|
|
- return samplePost;
|
|
|
+ public Double getResultWendu() {
|
|
|
+ return resultWendu;
|
|
|
}
|
|
|
- public void setResultWendu(Long resultWendu)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setResultWendu(Double resultWendu) {
|
|
|
this.resultWendu = resultWendu;
|
|
|
}
|
|
|
|
|
|
- public Long getResultWendu()
|
|
|
- {
|
|
|
- return resultWendu;
|
|
|
+ public Double getResultShidu() {
|
|
|
+ return resultShidu;
|
|
|
}
|
|
|
- public void setResultShidu(Long resultShidu)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setResultShidu(Double resultShidu) {
|
|
|
this.resultShidu = resultShidu;
|
|
|
}
|
|
|
|
|
|
- public Long getResultShidu()
|
|
|
- {
|
|
|
- return resultShidu;
|
|
|
+ public Double getOriginalConcentration() {
|
|
|
+ return originalConcentration;
|
|
|
}
|
|
|
- public void setOriginalConcentration(Long originalConcentration)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setOriginalConcentration(Double originalConcentration) {
|
|
|
this.originalConcentration = originalConcentration;
|
|
|
}
|
|
|
|
|
|
- public Long getOriginalConcentration()
|
|
|
- {
|
|
|
- return originalConcentration;
|
|
|
+ public String getCurveNo() {
|
|
|
+ return curveNo;
|
|
|
}
|
|
|
- public void setCurveNo(String curveNo)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setCurveNo(String curveNo) {
|
|
|
this.curveNo = curveNo;
|
|
|
}
|
|
|
|
|
|
- public String getCurveNo()
|
|
|
- {
|
|
|
- return curveNo;
|
|
|
+ public String getReadFlag() {
|
|
|
+ return readFlag;
|
|
|
}
|
|
|
- public void setReadFlag(String readFlag)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setReadFlag(String readFlag) {
|
|
|
this.readFlag = readFlag;
|
|
|
}
|
|
|
|
|
|
- public String getReadFlag()
|
|
|
- {
|
|
|
- return readFlag;
|
|
|
+ public Date getcPangusyncsourcetimestamp() {
|
|
|
+ return cPangusyncsourcetimestamp;
|
|
|
}
|
|
|
- public void setcPangusyncsourcetimestamp(Date cPangusyncsourcetimestamp)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setcPangusyncsourcetimestamp(Date cPangusyncsourcetimestamp) {
|
|
|
this.cPangusyncsourcetimestamp = cPangusyncsourcetimestamp;
|
|
|
}
|
|
|
|
|
|
- public Date getcPangusyncsourcetimestamp()
|
|
|
- {
|
|
|
- return cPangusyncsourcetimestamp;
|
|
|
+ public String getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(String createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreateBy() {
|
|
|
+ return createBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateBy(String createBy) {
|
|
|
+ this.createBy = createBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(String updateTime) {
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUpdateBy() {
|
|
|
+ return updateBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateBy(String updateBy) {
|
|
|
+ this.updateBy = updateBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTimeBegin() {
|
|
|
+ return timeBegin;
|
|
|
}
|
|
|
|
|
|
+ public void setTimeBegin(String timeBegin) {
|
|
|
+ this.timeBegin = timeBegin;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTimeEnd() {
|
|
|
+ return timeEnd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTimeEnd(String timeEnd) {
|
|
|
+ this.timeEnd = timeEnd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
}
|