parent
a45416c4ce
commit
23069ec518
@ -0,0 +1,73 @@ |
||||
package com.psdc.entity.res; |
||||
|
||||
import com.psdc.annotation.Excel; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.Data; |
||||
import lombok.NoArgsConstructor; |
||||
|
||||
/** |
||||
* @Author:戴仕崑 |
||||
* @Project:psdc |
||||
* @Filename:PsdcDeviceInfoRes |
||||
* @Date:2023/5/15 15:24 |
||||
* @Version 1.0 |
||||
*/ |
||||
@Data |
||||
@AllArgsConstructor |
||||
@NoArgsConstructor |
||||
public class PsdcDeviceInfoRes { |
||||
|
||||
/** 设备id */ |
||||
@Excel(name = "设备Id", cellType = Excel.ColumnType.NUMERIC) |
||||
private Integer deviceId ; |
||||
/** 设备模型 */ |
||||
@Excel(name = "设备模型") |
||||
private String deviceModel; |
||||
/** 安装地址 */ |
||||
@Excel(name = "安装地址") |
||||
private String deviceAddress ; |
||||
/** 用户id */ |
||||
private Integer userId ; |
||||
/** 用户名称 */ |
||||
@Excel(name = "用户名称") |
||||
private String userName ; |
||||
|
||||
/** 父设备Id */ |
||||
private Integer parentId; |
||||
/** 设备名称 */ |
||||
@Excel(name = "设备名称") |
||||
private String deviceName ; |
||||
/** 设备sn */ |
||||
@Excel(name = "设备Sn") |
||||
private String deviceSn ; |
||||
/** 启用时间 */ |
||||
@Excel(name = "启用时间") |
||||
private String startTime ; |
||||
/** 当前功率 */ |
||||
@Excel(name = "当前功率") |
||||
private Double totp; |
||||
/** 当前温度 */ |
||||
@Excel(name = "当前温度") |
||||
private Double temp; |
||||
/** 目前实时进水温度 */ |
||||
@Excel(name = "进水温度") |
||||
private Double tempIn; |
||||
/** 目前实时出水温度 */ |
||||
@Excel(name = "出水温度") |
||||
private Double tempOut; |
||||
/** 当前总有功电能 */ |
||||
@Excel(name = "总用电量") |
||||
private Double totWh; |
||||
|
||||
/** 设备状态:1-未激活,2-禁用,3-在线,4-离线 */ |
||||
private Integer deviceStatus ; |
||||
/** 设备状态:1-未激活,2-禁用,3-在线,4-离线 */ |
||||
@Excel(name = "设备状态") |
||||
private String devStatus ; |
||||
/** 设备运行状态:1-开启,2-关闭 */ |
||||
private Integer deviceRunstatus ; |
||||
/** 设备运行状态:1-开启,2-关闭 */ |
||||
@Excel(name = "设备运行状态") |
||||
private String devRunstatus ; |
||||
|
||||
} |
Loading…
Reference in new issue