ZAssayResult.java 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. package com.ruoyi.business.domain;
  2. import lombok.AllArgsConstructor;
  3. import lombok.Builder;
  4. import lombok.Data;
  5. import lombok.NoArgsConstructor;
  6. import com.ruoyi.common.annotation.Excel;
  7. /**
  8. * 化验结果明细对象 z_assay_result
  9. *
  10. * @author slibra
  11. * @date 2024-09-26
  12. */
  13. @Builder
  14. @Data
  15. @AllArgsConstructor
  16. @NoArgsConstructor
  17. public class ZAssayResult
  18. {
  19. private static final long serialVersionUID = 1L;
  20. /** id */
  21. private Long resultId;
  22. /** 化验唯一编号 */
  23. @Excel(name = "化验唯一编号")
  24. private String assayNo;
  25. /** 结果编号 */
  26. @Excel(name = "结果编号")
  27. private String resultNo;
  28. /** 样品编号 */
  29. @Excel(name = "样品编号")
  30. private String sampleNo;
  31. /** 样品体积 */
  32. @Excel(name = "样品体积")
  33. private Long sampleVolume;
  34. /** 化验设备编号 */
  35. @Excel(name = "化验设备编号")
  36. private String deviceNo;
  37. /** 化验项目 */
  38. @Excel(name = "化验项目")
  39. private String assayItem;
  40. /** 化验浓度值 */
  41. @Excel(name = "化验浓度值")
  42. private Double resultConcentration;
  43. /** 化验ABS值(吸光度) */
  44. @Excel(name = "化验ABS值", readConverterExp = "吸=光度")
  45. private Long resultAbs;
  46. /** 结果日期 */
  47. @Excel(name = "结果日期")
  48. private String resultDate;
  49. /** 结果时间 */
  50. @Excel(name = "结果时间")
  51. private String resultTime;
  52. /** 曲线k0 */
  53. @Excel(name = "曲线k0")
  54. private Long curveK0;
  55. /** 曲线k1 */
  56. @Excel(name = "曲线k1")
  57. private Long curveK1;
  58. /** 曲线唯一id */
  59. @Excel(name = "曲线唯一id")
  60. private Long curveId;
  61. /** $column.columnComment */
  62. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  63. private Long j1901S01;
  64. /** $column.columnComment */
  65. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  66. private Long j1901D01;
  67. /** $column.columnComment */
  68. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  69. private Long j1901R01;
  70. /** $column.columnComment */
  71. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  72. private Long j1901S1;
  73. /** $column.columnComment */
  74. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  75. private Long j1901D1;
  76. /** $column.columnComment */
  77. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  78. private Long j1901R1;
  79. /** $column.columnComment */
  80. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  81. private Long j1901S02;
  82. /** $column.columnComment */
  83. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  84. private Long j1901D02;
  85. /** $column.columnComment */
  86. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  87. private Long j1901R02;
  88. /** $column.columnComment */
  89. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  90. private Long j1901S2;
  91. /** $column.columnComment */
  92. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  93. private Long j1901D2;
  94. /** $column.columnComment */
  95. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  96. private Long j1901R2;
  97. /** 化验分类 */
  98. @Excel(name = "化验分类")
  99. private String assayType;
  100. /** 样品位 */
  101. @Excel(name = "样品位")
  102. private Long samplePost;
  103. /** 化验温度 */
  104. @Excel(name = "化验温度")
  105. private Double resultWendu;
  106. /** 化验湿度 */
  107. @Excel(name = "化验湿度")
  108. private Double resultShidu;
  109. /** 原始浓度值 */
  110. @Excel(name = "原始浓度值")
  111. private Long originalConcentration;
  112. /** 曲线编号 */
  113. @Excel(name = "曲线编号")
  114. private String curveNo;
  115. /** (0:未读,1:已读) */
  116. @Excel(name = "(0:未读,1:已读)")
  117. private String readFlag;
  118. //SqlServer存放的是字符串,所以这里要改成字符串类型
  119. /** 创建时间 */
  120. private String createTime;
  121. /** 创建者 */
  122. private String createBy;
  123. /** 更新时间 */
  124. private String updateTime;
  125. /** 更新者 */
  126. private String updateBy;
  127. //请求参数
  128. /** 开始时间 */
  129. // @JsonFormat(pattern = "yyyy-MM-dd")
  130. private String timeBegin;
  131. /** 截止时间 */
  132. // @JsonFormat(pattern = "yyyy-MM-dd")
  133. private String timeEnd;
  134. }