From 49aaecfb0617b0e6043147c86f3d303e9f24867e Mon Sep 17 00:00:00 2001 From: liulin <lin.liu@88.com> Date: 星期三, 09 七月 2025 20:27:56 +0800 Subject: [PATCH] 修改yml配置 --- src/main/java/com/fengdu/gas/repository/po/WaterFacilityPO.java | 27 +++++++++++++++++++++------ 1 files changed, 21 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/fengdu/gas/repository/po/WaterFacilityPO.java b/src/main/java/com/fengdu/gas/repository/po/WaterFacilityPO.java index a9596b2..7fc8117 100644 --- a/src/main/java/com/fengdu/gas/repository/po/WaterFacilityPO.java +++ b/src/main/java/com/fengdu/gas/repository/po/WaterFacilityPO.java @@ -37,9 +37,19 @@ @TableName("water_facility") public class WaterFacilityPO implements Serializable { /** - * null + * 主键 */ private Long id; + /** + * 监控点id + */ + @TableField(value = "point_id") + private Long pointId; + /** + * 监控点名称 + */ + @TableField(value = "point_name") + private String pointName; /** * 设备名称 */ @@ -55,11 +65,6 @@ */ @TableField(value = "facility_type") private Long facilityType; - /** - * 监控点id - */ - @TableField(value = "point_id") - private Long pointId; /** * 是否在线 */ @@ -81,6 +86,16 @@ @TableField(value = "facility_url") private String facilityUrl; /** + * 设备状态 + */ + @TableField(value = "facility_state") + private Integer facilityState; + /** + * 设备风机运行状态 + */ + @TableField(value = "facility_fan_state") + private Integer facilityFanState; + /** * 数据创建时间 */ @TableField(value = "create_time") -- Gitblit v1.9.3