| | |
| | | blade_dept bd on md.create_dept = bd.id |
| | | <where> |
| | | and md.is_deleted = 0 |
| | | <if test="param2.deviceName != null and param2.deviceName != ''"> |
| | | and md.nickname like concat('%',#{param2.deviceName},'%') |
| | | <if test="param2.nickname != null and param2.nickname != ''"> |
| | | and md.nickname like concat('%',#{param2.nickname},'%') |
| | | </if> |
| | | <if test="param2.deptId != null"> |
| | | and md.create_dept = #{param2.deptId} |
| | |
| | | <if test="param2.location != null and param2.location != ''"> |
| | | and md.location like concat('%',#{param2.location},'%') |
| | | </if> |
| | | <if test="param2.modeCode != null and param2.modeCode != ''"> |
| | | and md.mode_code = #{param2.modeCode} |
| | | </if> |
| | | <if test="param2.deviceType != null and param2.deviceType != ''"> |
| | | and md.device_type = #{param2.deviceType} |
| | | </if> |
| | | |
| | | </where> |
| | | </select> |
| | | |
| | |
| | | left join ja_gd_manage_device d2 on md.device_sn = d2.device_sn and d2.device_type = '0' |
| | | <where> |
| | | <if test="deviceIds != null and deviceIds.size() > 0"> |
| | | and id in |
| | | and md.id in |
| | | <foreach item="item" collection="deviceIds" index="index" open="(" close=")" separator=","> |
| | | #{item} |
| | | </foreach> |
| | | </if> |
| | | <if test="devicePayload != null and devicePayload != ''"> |
| | | and device_payload like concat('%',#{devicePayload},'%') |
| | | and md.device_payload like concat('%',#{devicePayload},'%') |
| | | </if> |
| | | <if test="geom != null and geom != ''"> |
| | | and ST_Intersects(geom, ST_GeomFromText(#{geom})) |
| | | and ST_Intersects(md.geom, ST_GeomFromText(#{geom})) |
| | | </if> |
| | | <if test="deviceType != null and deviceType != '' "> |
| | | and md.device_type = #{deviceType} |
| | | </if> |
| | | and md.is_deleted = 0 |
| | | </where> |