增加设备点位返回

This commit is contained in:
zy 2025-11-14 11:34:14 +08:00
parent 9e55cfd529
commit db717246d4
2 changed files with 8 additions and 1 deletions

View File

@ -26,7 +26,11 @@
<result property="izBaojing" column="IZ_BAOJING" jdbcType="VARCHAR"/>
<result property="ipAddr" column="IP_ADDR" jdbcType="VARCHAR"/>
<result property="port" column="PORT" jdbcType="VARCHAR"/>
<result property="sendInfo" column="SEND_INFO" jdbcType="VARCHAR"/>
<result column="DEVICE_LONGITUDE" property="deviceLongitude" jdbcType="VARCHAR"/>
<result column="DEVICE_LATITUDE" property="deviceLatitude" jdbcType="VARCHAR"/>
<result property="deviceIotUrl" column="DEVICE_IOT_URL" jdbcType="VARCHAR"/>
<result property="deviceReverseIotUrl" column="DEVICE_REVERSE_IOT_URL" jdbcType="VARCHAR"/>
<result property="mapIcon" column="MAP_ICON" jdbcType="VARCHAR"/>
</resultMap>
<resultMap id="extMap" type="org.jeecg.common.entity.SurvDeviceDeploy" extends="baseResultMap">

View File

@ -24,6 +24,9 @@
<result column="DEVICE_LONGITUDE" property="deviceLongitude"/>
<result column="DEVICE_LATITUDE" property="deviceLatitude"/>
<result column="GROUP_ID" property="groupId"/>
<result property="deviceIotUrl" column="DEVICE_IOT_URL" jdbcType="VARCHAR"/>
<result property="deviceReverseIotUrl" column="DEVICE_REVERSE_IOT_URL" jdbcType="VARCHAR"/>
<result property="mapIcon" column="MAP_ICON" jdbcType="VARCHAR"/>
</resultMap>
<resultMap id="adResultMap" type="org.jeecg.common.entity.SurvDeviceDeploy" extends="baseResultMap">
<association property="stationName" javaType="java.lang.String" select="getStationName" column="STATION_CODE"></association>