From 20fa28430338498d21a03e818bf62f1d1ce3c5fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=AE=8F=E6=96=8C?= <2164406372@qq.com> Date: Wed, 10 Sep 2025 14:15:25 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E5=A4=87=E6=B8=85=E5=8D=95=EF=BC=9A?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=AE=BE=E5=A4=87=E8=B4=9F=E8=B4=A3=E4=BA=BA?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../xujie/sys/modules/pms/data/EamObjectData.java | 13 +++++++++++++ src/main/resources/mapper/pms/EamObjectMapper.xml | 6 ++++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/xujie/sys/modules/pms/data/EamObjectData.java b/src/main/java/com/xujie/sys/modules/pms/data/EamObjectData.java index 4a056d3e..e68db703 100644 --- a/src/main/java/com/xujie/sys/modules/pms/data/EamObjectData.java +++ b/src/main/java/com/xujie/sys/modules/pms/data/EamObjectData.java @@ -100,6 +100,19 @@ public class EamObjectData extends QueryPage { private String publicFacilitiesFlag; // 公共设施标志 + public String getDeviceManager() { + return deviceManager; + } + + public void setDeviceManager(String deviceManager) { + this.deviceManager = deviceManager; + } + + /** + * 设备负责人 + */ + private String deviceManager; + public String getCycleTimeSend() { return cycleTimeSend; } diff --git a/src/main/resources/mapper/pms/EamObjectMapper.xml b/src/main/resources/mapper/pms/EamObjectMapper.xml index 92b40446..7ce410f6 100644 --- a/src/main/resources/mapper/pms/EamObjectMapper.xml +++ b/src/main/resources/mapper/pms/EamObjectMapper.xml @@ -49,7 +49,8 @@ eo.time_out_response_duration, eo.cycle_time_send, dbo.joint_mes_type(eo.Site, eo.bu_no, eo.ObjectID) as mesType, - eo.public_facilities_flag + eo.public_facilities_flag, + eo.device_manager FROM eam_object as eo LEFT JOIN eam_location as el ON eo.site = el.site and eo.LocationID = el.LocationID and eo.bu_no = el.bu_no LEFT JOIN eam_family as ef ON eo.site = ef.site and eo.FamilyID = ef.FamilyID and eo.bu_no = ef.bu_no @@ -151,7 +152,8 @@ time_out_maintenance_duration = #{timeOutMaintenanceDuration}, standard_response_duration = #{standardResponseDuration}, time_out_response_duration = #{timeOutResponseDuration}, - cycle_time_send = #{cycleTimeSend} + cycle_time_send = #{cycleTimeSend}, + device_manager = #{deviceManager} where id = #{id}