ZQualityValue.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. package com.ruoyi.business.domain;
  2. import java.util.Date;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import lombok.Builder;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import com.ruoyi.common.annotation.Excel;
  8. import com.ruoyi.common.core.domain.BaseEntity;
  9. /**
  10. * 水厂质控值对象 z_quality_value
  11. *
  12. * @author slibra
  13. * @date 2024-09-26
  14. */
  15. @Builder
  16. public class ZQualityValue extends BaseEntity
  17. {
  18. private static final long serialVersionUID = 1L;
  19. /** 记录id */
  20. private Long valueId;
  21. /** $column.columnComment */
  22. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  23. private Long deviceWorks;
  24. /** 化验项目 */
  25. @Excel(name = "化验项目")
  26. private String assayItem;
  27. /** 质控值 */
  28. @Excel(name = "质控值")
  29. private Long resultValue;
  30. /** 有效结束时间 */
  31. @JsonFormat(pattern = "yyyy-MM-dd")
  32. @Excel(name = "有效结束时间", width = 30, dateFormat = "yyyy-MM-dd")
  33. private Date endTime;
  34. /** 下限值 */
  35. @Excel(name = "下限值")
  36. private Long lowValue;
  37. /** 上限值 */
  38. @Excel(name = "上限值")
  39. private Long highValue;
  40. /** 有效开始时间 */
  41. @JsonFormat(pattern = "yyyy-MM-dd")
  42. @Excel(name = "有效开始时间", width = 30, dateFormat = "yyyy-MM-dd")
  43. private Date beginTime;
  44. public void setValueId(Long valueId)
  45. {
  46. this.valueId = valueId;
  47. }
  48. public Long getValueId()
  49. {
  50. return valueId;
  51. }
  52. public void setDeviceWorks(Long deviceWorks)
  53. {
  54. this.deviceWorks = deviceWorks;
  55. }
  56. public Long getDeviceWorks()
  57. {
  58. return deviceWorks;
  59. }
  60. public void setAssayItem(String assayItem)
  61. {
  62. this.assayItem = assayItem;
  63. }
  64. public String getAssayItem()
  65. {
  66. return assayItem;
  67. }
  68. public void setResultValue(Long resultValue)
  69. {
  70. this.resultValue = resultValue;
  71. }
  72. public Long getResultValue()
  73. {
  74. return resultValue;
  75. }
  76. public void setEndTime(Date endTime)
  77. {
  78. this.endTime = endTime;
  79. }
  80. public Date getEndTime()
  81. {
  82. return endTime;
  83. }
  84. public void setLowValue(Long lowValue)
  85. {
  86. this.lowValue = lowValue;
  87. }
  88. public Long getLowValue()
  89. {
  90. return lowValue;
  91. }
  92. public void setHighValue(Long highValue)
  93. {
  94. this.highValue = highValue;
  95. }
  96. public Long getHighValue()
  97. {
  98. return highValue;
  99. }
  100. public void setBeginTime(Date beginTime)
  101. {
  102. this.beginTime = beginTime;
  103. }
  104. public Date getBeginTime()
  105. {
  106. return beginTime;
  107. }
  108. @Override
  109. public String toString() {
  110. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  111. .append("valueId", getValueId())
  112. .append("deviceWorks", getDeviceWorks())
  113. .append("assayItem", getAssayItem())
  114. .append("resultValue", getResultValue())
  115. .append("createTime", getCreateTime())
  116. .append("updateTime", getUpdateTime())
  117. .append("endTime", getEndTime())
  118. .append("lowValue", getLowValue())
  119. .append("highValue", getHighValue())
  120. .append("beginTime", getBeginTime())
  121. .toString();
  122. }
  123. }