123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474 |
- package com.robot.remote.smartrobotremote.domain;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import java.util.Date;
- /**
- * 化验结果明细对象 z_assay_result
- *
- * @author ruoyi
- * @date 2025-03-06
- */
- public class ZAssayResult
- {
- private static final long serialVersionUID = 1L;
- /** id */
- private Long resultId;
- /** 化验唯一编号 */
- private String assayNo;
- /** 结果编号 */
- private String resultNo;
- /** 样品编号 */
- private String sampleNo;
- /** 样品体积 */
- private Long sampleVolume;
- /** 化验设备编号 */
- private String deviceNo;
- /** 化验项目 */
- private String assayItem;
- /** 化验浓度值 */
- private Long resultConcentration;
- /** 化验ABS值(吸光度) */
- private Long resultAbs;
- /** 结果日期 */
- private String resultDate;
- /** 结果时间 */
- private String resultTime;
- /** 曲线k0 */
- private Long curveK0;
- /** 曲线k1 */
- private Long curveK1;
- /** 曲线唯一id */
- private Long curveId;
- /** $column.columnComment */
- private Long j1901S01;
- /** $column.columnComment */
- private Long j1901D01;
- /** $column.columnComment */
- private Long j1901R01;
- /** $column.columnComment */
- private Long j1901S1;
- /** $column.columnComment */
- private Long j1901D1;
- /** $column.columnComment */
- private Long j1901R1;
- /** $column.columnComment */
- private Long j1901S02;
- /** $column.columnComment */
- private Long j1901D02;
- /** $column.columnComment */
- private Long j1901R02;
- /** $column.columnComment */
- private Long j1901S2;
- /** $column.columnComment */
- private Long j1901D2;
- /** $column.columnComment */
- private Long j1901R2;
- /** 化验分类 */
- private String assayType;
- /** 样品位 */
- private Long samplePost;
- /** 化验温度 */
- private Long resultWendu;
- /** 化验湿度 */
- private Long resultShidu;
- /** 原始浓度值 */
- private Long originalConcentration;
- /** 曲线编号 */
- private String curveNo;
- /** (0:未读,1:已读) */
- private String readFlag;
- /** $column.columnComment */
- private Date cPangusyncsourcetimestamp;
- /** 创建者 */
- private String createBy;
- /** 创建时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date createTime;
- /** 更新者 */
- private String updateBy;
- /** 更新时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date updateTime;
- public String getCreateBy() {
- return createBy;
- }
- public void setCreateBy(String createBy) {
- this.createBy = createBy;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getUpdateBy() {
- return updateBy;
- }
- public void setUpdateBy(String updateBy) {
- this.updateBy = updateBy;
- }
- public Date getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- 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;
- }
- public void setcPangusyncsourcetimestamp(Date cPangusyncsourcetimestamp)
- {
- this.cPangusyncsourcetimestamp = cPangusyncsourcetimestamp;
- }
- public Date getcPangusyncsourcetimestamp()
- {
- return cPangusyncsourcetimestamp;
- }
- }
|