You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
816 B
26 lines
816 B
package com.mh.user.entity; |
|
|
|
import lombok.Data; |
|
|
|
import java.util.Date; |
|
|
|
@Data |
|
public class NowDataEntity { |
|
|
|
private Long id; |
|
private String curDate; //日期 |
|
private String buildingId; //楼栋编号 |
|
private String buildingName; //楼栋名称 |
|
private String pumpId; //热泵编号 |
|
private String pumpName; //热泵名称 |
|
private String tempSet; //水温设定 |
|
private String waterTemp; //水箱水温 |
|
private String runState; //运行状态 |
|
private String isFault; //是否故障 |
|
private String levelSet; //水位设置 |
|
private String waterLevel; //实际水位 |
|
private String tankId; //水箱编号 |
|
private String tankName; //水箱名称 |
|
private String envTemp; //环境温度 |
|
|
|
}
|
|
|