package com.ruoyi.iot.dto;
|
|
/**
|
* @author wmz
|
* @version v1.0
|
* @ClassName DeviceFilterDto
|
* @description TODO
|
* @createTime 2023/12/13 17:55
|
*/
|
|
public class DeviceFilterDto {
|
|
/**
|
* 设备ID
|
*/
|
private Long deviceId;
|
/**
|
* 设备名称
|
*/
|
private String deviceName;
|
/**
|
* 客户姓名
|
*/
|
private String userName;
|
/**
|
* 客户手机号
|
*/
|
private String userPhone;
|
|
/**
|
* 滤芯寿命A的物模型值
|
*/
|
private Integer FilterAValue;
|
/**
|
* 滤芯寿命B的物模型值
|
*/
|
private Integer FilterBValue;
|
/**
|
* 滤芯寿命C的物模型值
|
*/
|
private Integer FilterCValue;
|
/**
|
* 滤芯寿命D的物模型值
|
*/
|
private Integer FilterDValue;
|
|
public DeviceFilterDto() {
|
}
|
|
public DeviceFilterDto(Long deviceId, String deviceName, String user_name, String user_phone, Integer filterAValue, Integer filterBValue, Integer filterCValue, Integer filterDValue) {
|
this.deviceId = deviceId;
|
this.deviceName = deviceName;
|
this.userName = user_name;
|
this.userPhone = user_phone;
|
this.FilterAValue = filterAValue;
|
this.FilterBValue = filterBValue;
|
this.FilterCValue = filterCValue;
|
this.FilterDValue = filterDValue;
|
|
}
|
|
public String getDeviceName() {
|
return deviceName;
|
}
|
|
public void setDeviceName(String deviceName) {
|
this.deviceName = deviceName;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public String getUserPhone() {
|
return userPhone;
|
}
|
|
public void setUserPhone(String userPhone) {
|
this.userPhone = userPhone;
|
}
|
|
public Integer getFilterAValue() {
|
return FilterAValue;
|
}
|
|
public void setFilterAValue(Integer filterAValue) {
|
FilterAValue = filterAValue;
|
}
|
|
public Integer getFilterBValue() {
|
return FilterBValue;
|
}
|
|
public void setFilterBValue(Integer filterBValue) {
|
FilterBValue = filterBValue;
|
}
|
|
public Integer getFilterCValue() {
|
return FilterCValue;
|
}
|
|
public void setFilterCValue(Integer filterCValue) {
|
FilterCValue = filterCValue;
|
}
|
|
public Integer getFilterDValue() {
|
return FilterDValue;
|
}
|
|
public void setFilterDValue(Integer filterDValue) {
|
FilterDValue = filterDValue;
|
}
|
}
|