增加 无动力设备展示接口
parent
7ee0edb3f7
commit
307d735aaa
@ -0,0 +1,78 @@
|
|||||||
|
package com.ruoyi.api.domain;
|
||||||
|
|
||||||
|
import com.ruoyi.common.annotation.Excel;
|
||||||
|
|
||||||
|
public class NoPowerDevice {
|
||||||
|
|
||||||
|
/** 摆放桩位 */
|
||||||
|
@Excel(name = "摆放桩位")
|
||||||
|
private String locationName;
|
||||||
|
|
||||||
|
/** 设备编码 */
|
||||||
|
@Excel(name = "设备编码")
|
||||||
|
private String deviceCode;
|
||||||
|
|
||||||
|
/** 设备名称 */
|
||||||
|
@Excel(name = "设备名称")
|
||||||
|
private String deviceName;
|
||||||
|
|
||||||
|
/** 设备类型 */
|
||||||
|
@Excel(name = "设备类型")
|
||||||
|
private Long deviceType;
|
||||||
|
|
||||||
|
/** 使用状态 */
|
||||||
|
@Excel(name = "使用状态 0=空闲 1=使用中")
|
||||||
|
private String useState;
|
||||||
|
|
||||||
|
/** 设备状态 */
|
||||||
|
@Excel(name = "设备状态 0=停用 1=正常 2=维修中")
|
||||||
|
private String deviceState;
|
||||||
|
|
||||||
|
public String getLocationName() {
|
||||||
|
return locationName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLocationName(String locationName) {
|
||||||
|
this.locationName = locationName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDeviceCode() {
|
||||||
|
return deviceCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDeviceCode(String deviceCode) {
|
||||||
|
this.deviceCode = deviceCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDeviceName() {
|
||||||
|
return deviceName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDeviceName(String deviceName) {
|
||||||
|
this.deviceName = deviceName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getDeviceType() {
|
||||||
|
return deviceType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDeviceType(Long deviceType) {
|
||||||
|
this.deviceType = deviceType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUseState() {
|
||||||
|
return useState;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUseState(String useState) {
|
||||||
|
this.useState = useState;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDeviceState() {
|
||||||
|
return deviceState;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDeviceState(String deviceState) {
|
||||||
|
this.deviceState = deviceState;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue