0926-奉贤液冷数据接入
This commit is contained in:
@ -15,6 +15,13 @@
|
||||
<result property="heatingStopPoint" column="heating_stop_point" />
|
||||
<result property="coolingStopPoint" column="cooling_stop_point" />
|
||||
<result property="lowTempAlarmPoint" column="low_temp_alarm_point" />
|
||||
<result property="gsTemp" column="gs_temp" />
|
||||
<result property="hsTemp" column="hs_temp" />
|
||||
<result property="gsPressure" column="gs_pressure" />
|
||||
<result property="hsPressure" column="hs_pressure" />
|
||||
<result property="lysTemp" column="lys_temp" />
|
||||
<result property="vb01Kd" column="vb01_kd" />
|
||||
<result property="vb02Kd" column="vb02_kd" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
@ -25,7 +32,7 @@
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectEmsCoolingDataVo">
|
||||
select id, system_name, work_mode, current_temperature, heating_start_point, cooling_start_point, high_temp_alarm_point, heating_stop_point, cooling_stop_point, low_temp_alarm_point, create_by, create_time, update_by, update_time, remark, site_id, device_id from ems_cooling_data
|
||||
select id, system_name, work_mode, current_temperature, heating_start_point, cooling_start_point, high_temp_alarm_point, heating_stop_point, cooling_stop_point, low_temp_alarm_point, gs_temp, hs_temp, gs_pressure, hs_pressure, lys_temp, vb01_kd, vb02_kd, create_by, create_time, update_by, update_time, remark, site_id, device_id from ems_cooling_data
|
||||
</sql>
|
||||
|
||||
<select id="selectEmsCoolingDataList" parameterType="EmsCoolingData" resultMap="EmsCoolingDataResult">
|
||||
@ -40,6 +47,13 @@
|
||||
<if test="heatingStopPoint != null "> and heating_stop_point = #{heatingStopPoint}</if>
|
||||
<if test="coolingStopPoint != null "> and cooling_stop_point = #{coolingStopPoint}</if>
|
||||
<if test="lowTempAlarmPoint != null "> and low_temp_alarm_point = #{lowTempAlarmPoint}</if>
|
||||
<if test="gsTemp != null "> and gs_temp = #{gsTemp}</if>
|
||||
<if test="hsTemp != null "> and hs_temp = #{hsTemp}</if>
|
||||
<if test="gsPressure != null "> and gs_pressure = #{gsPressure}</if>
|
||||
<if test="hsPressure != null "> and hs_pressure = #{hsPressure}</if>
|
||||
<if test="lysTemp != null "> and lys_temp = #{lysTemp}</if>
|
||||
<if test="vb01Kd != null "> and vb01_kd = #{vb01Kd}</if>
|
||||
<if test="vb02Kd != null "> and vb02_kd = #{vb02Kd}</if>
|
||||
<if test="siteId != null and siteId != ''"> and site_id = #{siteId}</if>
|
||||
<if test="deviceId != null and deviceId != ''"> and device_id = #{deviceId}</if>
|
||||
</where>
|
||||
@ -62,6 +76,13 @@
|
||||
<if test="heatingStopPoint != null">heating_stop_point,</if>
|
||||
<if test="coolingStopPoint != null">cooling_stop_point,</if>
|
||||
<if test="lowTempAlarmPoint != null">low_temp_alarm_point,</if>
|
||||
<if test="gsTemp != null">gs_temp,</if>
|
||||
<if test="hsTemp != null">hs_temp,</if>
|
||||
<if test="gsPressure != null">gs_pressure,</if>
|
||||
<if test="hsPressure != null">hs_pressure,</if>
|
||||
<if test="lysTemp != null">lys_temp,</if>
|
||||
<if test="vb01Kd != null">vb01_kd,</if>
|
||||
<if test="vb02Kd != null">vb02_kd,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
@ -80,6 +101,13 @@
|
||||
<if test="heatingStopPoint != null">#{heatingStopPoint},</if>
|
||||
<if test="coolingStopPoint != null">#{coolingStopPoint},</if>
|
||||
<if test="lowTempAlarmPoint != null">#{lowTempAlarmPoint},</if>
|
||||
<if test="gsTemp != null">#{gsTemp},</if>
|
||||
<if test="hsTemp != null">#{hsTemp},</if>
|
||||
<if test="gsPressure != null">#{gsPressure},</if>
|
||||
<if test="hsPressure != null">#{hsPressure},</if>
|
||||
<if test="lysTemp != null">#{lysTemp},</if>
|
||||
<if test="vb01Kd != null">#{vb01Kd},</if>
|
||||
<if test="vb02Kd != null">#{vb02Kd},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
@ -102,6 +130,13 @@
|
||||
<if test="heatingStopPoint != null">heating_stop_point = #{heatingStopPoint},</if>
|
||||
<if test="coolingStopPoint != null">cooling_stop_point = #{coolingStopPoint},</if>
|
||||
<if test="lowTempAlarmPoint != null">low_temp_alarm_point = #{lowTempAlarmPoint},</if>
|
||||
<if test="gsTemp != null">gs_temp = #{gsTemp},</if>
|
||||
<if test="hsTemp != null">hs_temp = #{hsTemp},</if>
|
||||
<if test="gsPressure != null">gs_pressure = #{gsPressure},</if>
|
||||
<if test="hsPressure != null">hs_pressure = #{hsPressure},</if>
|
||||
<if test="lysTemp != null">lys_temp = #{lysTemp},</if>
|
||||
<if test="vb01Kd != null">vb01_kd = #{vb01Kd},</if>
|
||||
<if test="vb02Kd != null">vb02_kd = #{vb02Kd},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
|
||||
Reference in New Issue
Block a user