123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- package com.ruoyi.business.domain;
- import lombok.AllArgsConstructor;
- import lombok.Builder;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- import com.ruoyi.common.annotation.Excel;
- /**
- * 化验结果明细对象 z_assay_result
- *
- * @author slibra
- * @date 2024-09-26
- */
- @Builder
- @Data
- @AllArgsConstructor
- @NoArgsConstructor
- public class ZAssayResult
- {
- private static final long serialVersionUID = 1L;
- /** id */
- private Long resultId;
- /** 化验唯一编号 */
- @Excel(name = "化验唯一编号")
- private String assayNo;
- /** 结果编号 */
- @Excel(name = "结果编号")
- private String resultNo;
- /** 样品编号 */
- @Excel(name = "样品编号")
- private String sampleNo;
- /** 样品体积 */
- @Excel(name = "样品体积")
- private Long sampleVolume;
- /** 化验设备编号 */
- @Excel(name = "化验设备编号")
- private String deviceNo;
- /** 化验项目 */
- @Excel(name = "化验项目")
- private String assayItem;
- /** 化验浓度值 */
- @Excel(name = "化验浓度值")
- private Double resultConcentration;
- /** 化验ABS值(吸光度) */
- @Excel(name = "化验ABS值", readConverterExp = "吸=光度")
- private Long resultAbs;
- /** 结果日期 */
- @Excel(name = "结果日期")
- private String resultDate;
- /** 结果时间 */
- @Excel(name = "结果时间")
- private String resultTime;
- /** 曲线k0 */
- @Excel(name = "曲线k0")
- private Long curveK0;
- /** 曲线k1 */
- @Excel(name = "曲线k1")
- private Long curveK1;
- /** 曲线唯一id */
- @Excel(name = "曲线唯一id")
- private Long curveId;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long j1901S01;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long j1901D01;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long j1901R01;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long j1901S1;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long j1901D1;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long j1901R1;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long j1901S02;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long j1901D02;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long j1901R02;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long j1901S2;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long j1901D2;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long j1901R2;
- /** 化验分类 */
- @Excel(name = "化验分类")
- private String assayType;
- /** 样品位 */
- @Excel(name = "样品位")
- private Long samplePost;
- /** 化验温度 */
- @Excel(name = "化验温度")
- private Double resultWendu;
- /** 化验湿度 */
- @Excel(name = "化验湿度")
- private Double resultShidu;
- /** 原始浓度值 */
- @Excel(name = "原始浓度值")
- private Long originalConcentration;
- /** 曲线编号 */
- @Excel(name = "曲线编号")
- private String curveNo;
- /** (0:未读,1:已读) */
- @Excel(name = "(0:未读,1:已读)")
- private String readFlag;
- //SqlServer存放的是字符串,所以这里要改成字符串类型
- /** 创建时间 */
- private String createTime;
- /** 创建者 */
- private String createBy;
- /** 更新时间 */
- private String updateTime;
- /** 更新者 */
- private String updateBy;
- //请求参数
- /** 开始时间 */
- // @JsonFormat(pattern = "yyyy-MM-dd")
- private String timeBegin;
- /** 截止时间 */
- // @JsonFormat(pattern = "yyyy-MM-dd")
- private String timeEnd;
- }
|