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(); } }