|
@@ -1,11 +1,17 @@
|
|
package com.ruoyi.business.domain;
|
|
package com.ruoyi.business.domain;
|
|
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
+import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Builder;
|
|
|
|
+import lombok.Data;
|
|
|
|
+import lombok.NoArgsConstructor;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
|
|
|
+import java.util.Date;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 化验结果明细对象 z_assay_result
|
|
* 化验结果明细对象 z_assay_result
|
|
*
|
|
*
|
|
@@ -13,7 +19,10 @@ import com.ruoyi.common.core.domain.BaseEntity;
|
|
* @date 2024-09-26
|
|
* @date 2024-09-26
|
|
*/
|
|
*/
|
|
@Builder
|
|
@Builder
|
|
-public class ZAssayResult extends BaseEntity
|
|
|
|
|
|
+@Data
|
|
|
|
+@AllArgsConstructor
|
|
|
|
+@NoArgsConstructor
|
|
|
|
+public class ZAssayResult
|
|
{
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
@@ -148,344 +157,19 @@ public class ZAssayResult extends BaseEntity
|
|
@Excel(name = "(0:未读,1:已读)")
|
|
@Excel(name = "(0:未读,1:已读)")
|
|
private String readFlag;
|
|
private String readFlag;
|
|
|
|
|
|
- public void setResultId(Long resultId)
|
|
|
|
- {
|
|
|
|
- this.resultId = resultId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getResultId()
|
|
|
|
- {
|
|
|
|
- return resultId;
|
|
|
|
- }
|
|
|
|
- public void setAssayNo(String assayNo)
|
|
|
|
- {
|
|
|
|
- this.assayNo = assayNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getAssayNo()
|
|
|
|
- {
|
|
|
|
- return assayNo;
|
|
|
|
- }
|
|
|
|
- public void setResultNo(String resultNo)
|
|
|
|
- {
|
|
|
|
- this.resultNo = resultNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getResultNo()
|
|
|
|
- {
|
|
|
|
- return resultNo;
|
|
|
|
- }
|
|
|
|
- public void setSampleNo(String sampleNo)
|
|
|
|
- {
|
|
|
|
- this.sampleNo = sampleNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getSampleNo()
|
|
|
|
- {
|
|
|
|
- return sampleNo;
|
|
|
|
- }
|
|
|
|
- public void setSampleVolume(Long sampleVolume)
|
|
|
|
- {
|
|
|
|
- this.sampleVolume = sampleVolume;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getSampleVolume()
|
|
|
|
- {
|
|
|
|
- return sampleVolume;
|
|
|
|
- }
|
|
|
|
- public void setDeviceNo(String deviceNo)
|
|
|
|
- {
|
|
|
|
- this.deviceNo = deviceNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getDeviceNo()
|
|
|
|
- {
|
|
|
|
- return deviceNo;
|
|
|
|
- }
|
|
|
|
- public void setAssayItem(String assayItem)
|
|
|
|
- {
|
|
|
|
- this.assayItem = assayItem;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getAssayItem()
|
|
|
|
- {
|
|
|
|
- return assayItem;
|
|
|
|
- }
|
|
|
|
- public void setResultConcentration(Long resultConcentration)
|
|
|
|
- {
|
|
|
|
- this.resultConcentration = resultConcentration;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getResultConcentration()
|
|
|
|
- {
|
|
|
|
- return resultConcentration;
|
|
|
|
- }
|
|
|
|
- public void setResultAbs(Long resultAbs)
|
|
|
|
- {
|
|
|
|
- this.resultAbs = resultAbs;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getResultAbs()
|
|
|
|
- {
|
|
|
|
- return resultAbs;
|
|
|
|
- }
|
|
|
|
- public void setResultDate(String resultDate)
|
|
|
|
- {
|
|
|
|
- this.resultDate = resultDate;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getResultDate()
|
|
|
|
- {
|
|
|
|
- return resultDate;
|
|
|
|
- }
|
|
|
|
- public void setResultTime(String resultTime)
|
|
|
|
- {
|
|
|
|
- this.resultTime = resultTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getResultTime()
|
|
|
|
- {
|
|
|
|
- return resultTime;
|
|
|
|
- }
|
|
|
|
- public void setCurveK0(Long curveK0)
|
|
|
|
- {
|
|
|
|
- this.curveK0 = curveK0;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getCurveK0()
|
|
|
|
- {
|
|
|
|
- return curveK0;
|
|
|
|
- }
|
|
|
|
- public void setCurveK1(Long curveK1)
|
|
|
|
- {
|
|
|
|
- this.curveK1 = curveK1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getCurveK1()
|
|
|
|
- {
|
|
|
|
- return curveK1;
|
|
|
|
- }
|
|
|
|
- public void setCurveId(Long curveId)
|
|
|
|
- {
|
|
|
|
- this.curveId = curveId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getCurveId()
|
|
|
|
- {
|
|
|
|
- return curveId;
|
|
|
|
- }
|
|
|
|
- public void setJ1901S01(Long j1901S01)
|
|
|
|
- {
|
|
|
|
- this.j1901S01 = j1901S01;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getJ1901S01()
|
|
|
|
- {
|
|
|
|
- return j1901S01;
|
|
|
|
- }
|
|
|
|
- public void setJ1901D01(Long j1901D01)
|
|
|
|
- {
|
|
|
|
- this.j1901D01 = j1901D01;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getJ1901D01()
|
|
|
|
- {
|
|
|
|
- return j1901D01;
|
|
|
|
- }
|
|
|
|
- public void setJ1901R01(Long j1901R01)
|
|
|
|
- {
|
|
|
|
- this.j1901R01 = j1901R01;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getJ1901R01()
|
|
|
|
- {
|
|
|
|
- return j1901R01;
|
|
|
|
- }
|
|
|
|
- public void setJ1901S1(Long j1901S1)
|
|
|
|
- {
|
|
|
|
- this.j1901S1 = j1901S1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getJ1901S1()
|
|
|
|
- {
|
|
|
|
- return j1901S1;
|
|
|
|
- }
|
|
|
|
- public void setJ1901D1(Long j1901D1)
|
|
|
|
- {
|
|
|
|
- this.j1901D1 = j1901D1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getJ1901D1()
|
|
|
|
- {
|
|
|
|
- return j1901D1;
|
|
|
|
- }
|
|
|
|
- public void setJ1901R1(Long j1901R1)
|
|
|
|
- {
|
|
|
|
- this.j1901R1 = j1901R1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getJ1901R1()
|
|
|
|
- {
|
|
|
|
- return j1901R1;
|
|
|
|
- }
|
|
|
|
- public void setJ1901S02(Long j1901S02)
|
|
|
|
- {
|
|
|
|
- this.j1901S02 = j1901S02;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getJ1901S02()
|
|
|
|
- {
|
|
|
|
- return j1901S02;
|
|
|
|
- }
|
|
|
|
- public void setJ1901D02(Long j1901D02)
|
|
|
|
- {
|
|
|
|
- this.j1901D02 = j1901D02;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getJ1901D02()
|
|
|
|
- {
|
|
|
|
- return j1901D02;
|
|
|
|
- }
|
|
|
|
- public void setJ1901R02(Long j1901R02)
|
|
|
|
- {
|
|
|
|
- this.j1901R02 = j1901R02;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getJ1901R02()
|
|
|
|
- {
|
|
|
|
- return j1901R02;
|
|
|
|
- }
|
|
|
|
- public void setJ1901S2(Long j1901S2)
|
|
|
|
- {
|
|
|
|
- this.j1901S2 = j1901S2;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getJ1901S2()
|
|
|
|
- {
|
|
|
|
- return j1901S2;
|
|
|
|
- }
|
|
|
|
- public void setJ1901D2(Long j1901D2)
|
|
|
|
- {
|
|
|
|
- this.j1901D2 = j1901D2;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getJ1901D2()
|
|
|
|
- {
|
|
|
|
- return j1901D2;
|
|
|
|
- }
|
|
|
|
- public void setJ1901R2(Long j1901R2)
|
|
|
|
- {
|
|
|
|
- this.j1901R2 = j1901R2;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getJ1901R2()
|
|
|
|
- {
|
|
|
|
- return j1901R2;
|
|
|
|
- }
|
|
|
|
- public void setAssayType(String assayType)
|
|
|
|
- {
|
|
|
|
- this.assayType = assayType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getAssayType()
|
|
|
|
- {
|
|
|
|
- return assayType;
|
|
|
|
- }
|
|
|
|
- public void setSamplePost(Long samplePost)
|
|
|
|
- {
|
|
|
|
- this.samplePost = samplePost;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getSamplePost()
|
|
|
|
- {
|
|
|
|
- return samplePost;
|
|
|
|
- }
|
|
|
|
- public void setResultWendu(Long resultWendu)
|
|
|
|
- {
|
|
|
|
- this.resultWendu = resultWendu;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getResultWendu()
|
|
|
|
- {
|
|
|
|
- return resultWendu;
|
|
|
|
- }
|
|
|
|
- public void setResultShidu(Long resultShidu)
|
|
|
|
- {
|
|
|
|
- this.resultShidu = resultShidu;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getResultShidu()
|
|
|
|
- {
|
|
|
|
- return resultShidu;
|
|
|
|
- }
|
|
|
|
- public void setOriginalConcentration(Long originalConcentration)
|
|
|
|
- {
|
|
|
|
- this.originalConcentration = originalConcentration;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getOriginalConcentration()
|
|
|
|
- {
|
|
|
|
- return originalConcentration;
|
|
|
|
- }
|
|
|
|
- public void setCurveNo(String curveNo)
|
|
|
|
- {
|
|
|
|
- this.curveNo = curveNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getCurveNo()
|
|
|
|
- {
|
|
|
|
- return curveNo;
|
|
|
|
- }
|
|
|
|
- public void setReadFlag(String readFlag)
|
|
|
|
- {
|
|
|
|
- this.readFlag = readFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getReadFlag()
|
|
|
|
- {
|
|
|
|
- return readFlag;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public String toString() {
|
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
- .append("resultId", getResultId())
|
|
|
|
- .append("assayNo", getAssayNo())
|
|
|
|
- .append("resultNo", getResultNo())
|
|
|
|
- .append("sampleNo", getSampleNo())
|
|
|
|
- .append("sampleVolume", getSampleVolume())
|
|
|
|
- .append("deviceNo", getDeviceNo())
|
|
|
|
- .append("assayItem", getAssayItem())
|
|
|
|
- .append("resultConcentration", getResultConcentration())
|
|
|
|
- .append("resultAbs", getResultAbs())
|
|
|
|
- .append("resultDate", getResultDate())
|
|
|
|
- .append("resultTime", getResultTime())
|
|
|
|
- .append("curveK0", getCurveK0())
|
|
|
|
- .append("curveK1", getCurveK1())
|
|
|
|
- .append("curveId", getCurveId())
|
|
|
|
- .append("createBy", getCreateBy())
|
|
|
|
- .append("createTime", getCreateTime())
|
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
|
- .append("j1901S01", getJ1901S01())
|
|
|
|
- .append("j1901D01", getJ1901D01())
|
|
|
|
- .append("j1901R01", getJ1901R01())
|
|
|
|
- .append("j1901S1", getJ1901S1())
|
|
|
|
- .append("j1901D1", getJ1901D1())
|
|
|
|
- .append("j1901R1", getJ1901R1())
|
|
|
|
- .append("j1901S02", getJ1901S02())
|
|
|
|
- .append("j1901D02", getJ1901D02())
|
|
|
|
- .append("j1901R02", getJ1901R02())
|
|
|
|
- .append("j1901S2", getJ1901S2())
|
|
|
|
- .append("j1901D2", getJ1901D2())
|
|
|
|
- .append("j1901R2", getJ1901R2())
|
|
|
|
- .append("assayType", getAssayType())
|
|
|
|
- .append("samplePost", getSamplePost())
|
|
|
|
- .append("resultWendu", getResultWendu())
|
|
|
|
- .append("resultShidu", getResultShidu())
|
|
|
|
- .append("originalConcentration", getOriginalConcentration())
|
|
|
|
- .append("curveNo", getCurveNo())
|
|
|
|
- .append("readFlag", getReadFlag())
|
|
|
|
- .toString();
|
|
|
|
- }
|
|
|
|
|
|
+
|
|
|
|
+ //SqlServer存放的是字符串,所以这里要改成字符串类型
|
|
|
|
+
|
|
|
|
+ /** 创建时间 */
|
|
|
|
+ private String createTime;
|
|
|
|
+
|
|
|
|
+ /** 创建者 */
|
|
|
|
+ private String createBy;
|
|
|
|
+
|
|
|
|
+ /** 更新时间 */
|
|
|
|
+ private String updateTime;
|
|
|
|
+
|
|
|
|
+ /** 更新者 */
|
|
|
|
+ private String updateBy;
|
|
|
|
+
|
|
}
|
|
}
|