123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- package com.ruoyi.business.domain;
- import java.util.Date;
- 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;
- /**
- * 设备对象 biz_device
- *
- * @author slibra
- * @date 2024-09-26
- */
- @Builder
- public class BizDevice extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** $column.columnComment */
- private Long deviceId;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceNo;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceName;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceSn;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceModel;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceMaker;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long deviceWorks;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceMaintainer;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceTel;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceType;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceStatus;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String assayStatus;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Date assayTime;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Date repairTime;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String repairBy;
- /** 故障代码 */
- @Excel(name = "故障代码")
- private String faultCode;
- /** 结果续传文件名 */
- @Excel(name = "结果续传文件名")
- private String deviceXujieJieguo;
- /** 报警续传文件名 */
- @Excel(name = "报警续传文件名")
- private String deviceXujieBaojing;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceProvince;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceCity;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceArea;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceLongitude;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceLatitude;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deviceAddress;
- /** 设备类型(1:化验室,2:连续检测) */
- @Excel(name = "设备类型(1:化验室,2:连续检测)")
- private String type;
- public void setDeviceId(Long deviceId)
- {
- this.deviceId = deviceId;
- }
- public Long getDeviceId()
- {
- return deviceId;
- }
- public void setDeviceNo(String deviceNo)
- {
- this.deviceNo = deviceNo;
- }
- public String getDeviceNo()
- {
- return deviceNo;
- }
- public void setDeviceName(String deviceName)
- {
- this.deviceName = deviceName;
- }
- public String getDeviceName()
- {
- return deviceName;
- }
- public void setDeviceSn(String deviceSn)
- {
- this.deviceSn = deviceSn;
- }
- public String getDeviceSn()
- {
- return deviceSn;
- }
- public void setDeviceModel(String deviceModel)
- {
- this.deviceModel = deviceModel;
- }
- public String getDeviceModel()
- {
- return deviceModel;
- }
- public void setDeviceMaker(String deviceMaker)
- {
- this.deviceMaker = deviceMaker;
- }
- public String getDeviceMaker()
- {
- return deviceMaker;
- }
- public void setDeviceWorks(Long deviceWorks)
- {
- this.deviceWorks = deviceWorks;
- }
- public Long getDeviceWorks()
- {
- return deviceWorks;
- }
- public void setDeviceMaintainer(String deviceMaintainer)
- {
- this.deviceMaintainer = deviceMaintainer;
- }
- public String getDeviceMaintainer()
- {
- return deviceMaintainer;
- }
- public void setDeviceTel(String deviceTel)
- {
- this.deviceTel = deviceTel;
- }
- public String getDeviceTel()
- {
- return deviceTel;
- }
- public void setDeviceType(String deviceType)
- {
- this.deviceType = deviceType;
- }
- public String getDeviceType()
- {
- return deviceType;
- }
- public void setDeviceStatus(String deviceStatus)
- {
- this.deviceStatus = deviceStatus;
- }
- public String getDeviceStatus()
- {
- return deviceStatus;
- }
- public void setAssayStatus(String assayStatus)
- {
- this.assayStatus = assayStatus;
- }
- public String getAssayStatus()
- {
- return assayStatus;
- }
- public void setAssayTime(Date assayTime)
- {
- this.assayTime = assayTime;
- }
- public Date getAssayTime()
- {
- return assayTime;
- }
- public void setRepairTime(Date repairTime)
- {
- this.repairTime = repairTime;
- }
- public Date getRepairTime()
- {
- return repairTime;
- }
- public void setRepairBy(String repairBy)
- {
- this.repairBy = repairBy;
- }
- public String getRepairBy()
- {
- return repairBy;
- }
- public void setFaultCode(String faultCode)
- {
- this.faultCode = faultCode;
- }
- public String getFaultCode()
- {
- return faultCode;
- }
- public void setDeviceXujieJieguo(String deviceXujieJieguo)
- {
- this.deviceXujieJieguo = deviceXujieJieguo;
- }
- public String getDeviceXujieJieguo()
- {
- return deviceXujieJieguo;
- }
- public void setDeviceXujieBaojing(String deviceXujieBaojing)
- {
- this.deviceXujieBaojing = deviceXujieBaojing;
- }
- public String getDeviceXujieBaojing()
- {
- return deviceXujieBaojing;
- }
- public void setDeviceProvince(String deviceProvince)
- {
- this.deviceProvince = deviceProvince;
- }
- public String getDeviceProvince()
- {
- return deviceProvince;
- }
- public void setDeviceCity(String deviceCity)
- {
- this.deviceCity = deviceCity;
- }
- public String getDeviceCity()
- {
- return deviceCity;
- }
- public void setDeviceArea(String deviceArea)
- {
- this.deviceArea = deviceArea;
- }
- public String getDeviceArea()
- {
- return deviceArea;
- }
- public void setDeviceLongitude(String deviceLongitude)
- {
- this.deviceLongitude = deviceLongitude;
- }
- public String getDeviceLongitude()
- {
- return deviceLongitude;
- }
- public void setDeviceLatitude(String deviceLatitude)
- {
- this.deviceLatitude = deviceLatitude;
- }
- public String getDeviceLatitude()
- {
- return deviceLatitude;
- }
- public void setDeviceAddress(String deviceAddress)
- {
- this.deviceAddress = deviceAddress;
- }
- public String getDeviceAddress()
- {
- return deviceAddress;
- }
- public void setType(String type)
- {
- this.type = type;
- }
- public String getType()
- {
- return type;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("deviceId", getDeviceId())
- .append("deviceNo", getDeviceNo())
- .append("deviceName", getDeviceName())
- .append("deviceSn", getDeviceSn())
- .append("deviceModel", getDeviceModel())
- .append("deviceMaker", getDeviceMaker())
- .append("deviceWorks", getDeviceWorks())
- .append("deviceMaintainer", getDeviceMaintainer())
- .append("deviceTel", getDeviceTel())
- .append("deviceType", getDeviceType())
- .append("deviceStatus", getDeviceStatus())
- .append("assayStatus", getAssayStatus())
- .append("assayTime", getAssayTime())
- .append("repairTime", getRepairTime())
- .append("repairBy", getRepairBy())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("faultCode", getFaultCode())
- .append("deviceXujieJieguo", getDeviceXujieJieguo())
- .append("deviceXujieBaojing", getDeviceXujieBaojing())
- .append("deviceProvince", getDeviceProvince())
- .append("deviceCity", getDeviceCity())
- .append("deviceArea", getDeviceArea())
- .append("deviceLongitude", getDeviceLongitude())
- .append("deviceLatitude", getDeviceLatitude())
- .append("deviceAddress", getDeviceAddress())
- .append("type", getType())
- .toString();
- }
- }
|