123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- package com.ruoyi.business.domain;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Builder;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 水厂质控值对象 z_quality_value
- *
- * @author slibra
- * @date 2024-09-26
- */
- @Builder
- public class ZQualityValue extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 记录id */
- private Long valueId;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long deviceWorks;
- /** 化验项目 */
- @Excel(name = "化验项目")
- private String assayItem;
- /** 质控值 */
- @Excel(name = "质控值")
- private Long resultValue;
- /** 有效结束时间 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "有效结束时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date endTime;
- /** 下限值 */
- @Excel(name = "下限值")
- private Long lowValue;
- /** 上限值 */
- @Excel(name = "上限值")
- private Long highValue;
- /** 有效开始时间 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "有效开始时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date beginTime;
- public void setValueId(Long valueId)
- {
- this.valueId = valueId;
- }
- public Long getValueId()
- {
- return valueId;
- }
- public void setDeviceWorks(Long deviceWorks)
- {
- this.deviceWorks = deviceWorks;
- }
- public Long getDeviceWorks()
- {
- return deviceWorks;
- }
- public void setAssayItem(String assayItem)
- {
- this.assayItem = assayItem;
- }
- public String getAssayItem()
- {
- return assayItem;
- }
- public void setResultValue(Long resultValue)
- {
- this.resultValue = resultValue;
- }
- public Long getResultValue()
- {
- return resultValue;
- }
- public void setEndTime(Date endTime)
- {
- this.endTime = endTime;
- }
- public Date getEndTime()
- {
- return endTime;
- }
- public void setLowValue(Long lowValue)
- {
- this.lowValue = lowValue;
- }
- public Long getLowValue()
- {
- return lowValue;
- }
- public void setHighValue(Long highValue)
- {
- this.highValue = highValue;
- }
- public Long getHighValue()
- {
- return highValue;
- }
- public void setBeginTime(Date beginTime)
- {
- this.beginTime = beginTime;
- }
- public Date getBeginTime()
- {
- return beginTime;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("valueId", getValueId())
- .append("deviceWorks", getDeviceWorks())
- .append("assayItem", getAssayItem())
- .append("resultValue", getResultValue())
- .append("createTime", getCreateTime())
- .append("updateTime", getUpdateTime())
- .append("endTime", getEndTime())
- .append("lowValue", getLowValue())
- .append("highValue", getHighValue())
- .append("beginTime", getBeginTime())
- .toString();
- }
- }
|