|
|
|
@ -32,43 +32,93 @@
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectBaseLineMonitorVo">
|
|
|
|
|
select objid, parent_id, monitor_id, monitor_name, monitor_addr, monitor_type, monitor_status, collect_device_id, build_id, ancestors, grade, correct_value, is_ammeter, line_name, line_length, line_status, power_capacity, water_capacity, dept_id, user_id, create_by, create_time, update_by, update_time from base_line_monitor
|
|
|
|
|
select blm.objid,
|
|
|
|
|
blm.parent_id,
|
|
|
|
|
blm.monitor_id,
|
|
|
|
|
bmi.monitor_name,
|
|
|
|
|
bmi.monitor_addr,
|
|
|
|
|
blm.monitor_type,
|
|
|
|
|
blm.monitor_status,
|
|
|
|
|
blm.collect_device_id,
|
|
|
|
|
blm.build_id,
|
|
|
|
|
blm.ancestors,
|
|
|
|
|
blm.grade,
|
|
|
|
|
blm.correct_value,
|
|
|
|
|
blm.is_ammeter,
|
|
|
|
|
blm.line_name,
|
|
|
|
|
blm.line_length,
|
|
|
|
|
blm.line_status,
|
|
|
|
|
blm.power_capacity,
|
|
|
|
|
blm.water_capacity,
|
|
|
|
|
blm.dept_id,
|
|
|
|
|
blm.user_id,
|
|
|
|
|
blm.create_by,
|
|
|
|
|
blm.create_time,
|
|
|
|
|
blm.update_by,
|
|
|
|
|
blm.update_time
|
|
|
|
|
from base_line_monitor blm
|
|
|
|
|
left join base_monitor_info bmi on blm.monitor_id = bmi.monitor_id
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectBaseLineMonitorList" parameterType="BaseLineMonitor" resultMap="BaseLineMonitorResult">
|
|
|
|
|
<include refid="selectBaseLineMonitorVo"/>
|
|
|
|
|
<where>
|
|
|
|
|
<if test="parentId != null ">and parent_id = #{parentId}</if>
|
|
|
|
|
<if test="monitorName != null and monitorName != ''">and monitor_name like concat('%', #{monitorName},
|
|
|
|
|
<if test="parentId != null ">and blm.parent_id = #{parentId}</if>
|
|
|
|
|
<if test="monitorName != null and monitorName != ''">and blm.monitor_name like concat('%', #{monitorName},
|
|
|
|
|
'%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="monitorAddr != null and monitorAddr != ''">and monitor_addr = #{monitorAddr}</if>
|
|
|
|
|
<if test="monitorType != null ">and monitor_type = #{monitorType}</if>
|
|
|
|
|
<if test="monitorStatus != null ">and monitor_status = #{monitorStatus}</if>
|
|
|
|
|
<if test="collectDeviceId != null and collectDeviceId != ''">and collect_device_id = #{collectDeviceId}
|
|
|
|
|
<if test="monitorAddr != null and monitorAddr != ''">and blm.monitor_addr = #{monitorAddr}</if>
|
|
|
|
|
<if test="monitorType != null ">and blm.monitor_type = #{monitorType}</if>
|
|
|
|
|
<if test="monitorStatus != null ">and blm.monitor_status = #{monitorStatus}</if>
|
|
|
|
|
<if test="collectDeviceId != null and collectDeviceId != ''">and blm.collect_device_id = #{collectDeviceId}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="buildId != null and buildId != ''">and build_id = #{buildId}</if>
|
|
|
|
|
<if test="ancestors != null and ancestors != ''">and ancestors = #{ancestors}</if>
|
|
|
|
|
<if test="grade != null ">and grade = #{grade}</if>
|
|
|
|
|
<if test="correctValue != null ">and correct_value = #{correctValue}</if>
|
|
|
|
|
<if test="isAmmeter != null and isAmmeter != ''">and is_ammeter = #{isAmmeter}</if>
|
|
|
|
|
<if test="lineName != null and lineName != ''">and line_name like concat('%', #{lineName}, '%')</if>
|
|
|
|
|
<if test="lineLength != null ">and line_length = #{lineLength}</if>
|
|
|
|
|
<if test="lineStatus != null ">and line_status = #{lineStatus}</if>
|
|
|
|
|
<if test="powerCapacity != null ">and power_capacity = #{powerCapacity}</if>
|
|
|
|
|
<if test="waterCapacity != null ">and water_capacity = #{waterCapacity}</if>
|
|
|
|
|
<if test="deptId != null ">and dept_id = #{deptId}</if>
|
|
|
|
|
<if test="userId != null ">and user_id = #{userId}</if>
|
|
|
|
|
<if test="buildId != null and buildId != ''">and blm.build_id = #{buildId}</if>
|
|
|
|
|
<if test="ancestors != null and ancestors != ''">and blm.ancestors = #{ancestors}</if>
|
|
|
|
|
<if test="grade != null ">and blm.grade = #{grade}</if>
|
|
|
|
|
<if test="correctValue != null ">and blm.correct_value = #{correctValue}</if>
|
|
|
|
|
<if test="isAmmeter != null and isAmmeter != ''">and blm.is_ammeter = #{isAmmeter}</if>
|
|
|
|
|
<if test="lineName != null and lineName != ''">and blm.line_name like concat('%', #{lineName}, '%')</if>
|
|
|
|
|
<if test="lineLength != null ">and blm.line_length = #{lineLength}</if>
|
|
|
|
|
<if test="lineStatus != null ">and blm.line_status = #{lineStatus}</if>
|
|
|
|
|
<if test="powerCapacity != null ">and blm.power_capacity = #{powerCapacity}</if>
|
|
|
|
|
<if test="waterCapacity != null ">and blm.water_capacity = #{waterCapacity}</if>
|
|
|
|
|
<if test="deptId != null ">and blm.dept_id = #{deptId}</if>
|
|
|
|
|
<if test="userId != null ">and blm.user_id = #{userId}</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectBaseLineMonitorByObjid" parameterType="Long" resultMap="BaseLineMonitorResult">
|
|
|
|
|
<include refid="selectBaseLineMonitorVo"/>
|
|
|
|
|
where objid = #{objid}
|
|
|
|
|
where blm.objid = #{objid}
|
|
|
|
|
</select>
|
|
|
|
|
<select id="selectBaseLineMonitorByMonitorId" resultMap="BaseLineMonitorResult">
|
|
|
|
|
select t.objid, t.parent_id, t.monitor_id, t.monitor_name, t.monitor_addr, t.monitor_type, t.monitor_status, t.collect_device_id, t.build_id, t.ancestors, t.grade, t.correct_value, t.is_ammeter, t.line_name, t.line_length, t.line_status, t.power_capacity, t.water_capacity, t.dept_id, t.user_id, t.create_by, t.create_time, t.update_by, t.update_time
|
|
|
|
|
select t.objid,
|
|
|
|
|
t.parent_id,
|
|
|
|
|
t.monitor_id,
|
|
|
|
|
t.monitor_name,
|
|
|
|
|
t.monitor_addr,
|
|
|
|
|
t.monitor_type,
|
|
|
|
|
t.monitor_status,
|
|
|
|
|
t.collect_device_id,
|
|
|
|
|
t.build_id,
|
|
|
|
|
t.ancestors,
|
|
|
|
|
t.grade,
|
|
|
|
|
t.correct_value,
|
|
|
|
|
t.is_ammeter,
|
|
|
|
|
t.line_name,
|
|
|
|
|
t.line_length,
|
|
|
|
|
t.line_status,
|
|
|
|
|
t.power_capacity,
|
|
|
|
|
t.water_capacity,
|
|
|
|
|
t.dept_id,
|
|
|
|
|
t.user_id,
|
|
|
|
|
t.create_by,
|
|
|
|
|
t.create_time,
|
|
|
|
|
t.update_by,
|
|
|
|
|
t.update_time
|
|
|
|
|
from base_line_monitor t
|
|
|
|
|
left join (select parent_id, count(*) sum from base_line_monitor group by parent_id) tp
|
|
|
|
|
on tp.parent_id = t.objid
|
|
|
|
|
where t.monitor_id = #{monitor_id}
|
|
|
|
|
</select>
|
|
|
|
|
<insert id="insertBaseLineMonitor" parameterType="BaseLineMonitor" useGeneratedKeys="true" keyProperty="objid">
|
|
|
|
|