| | |
| | | <result column="effective_range_km" property="effectiveRangeKm"/> |
| | | <result column="work_mode" property="workMode"/> |
| | | <result column="area_code" property="areaCode"/> |
| | | <result column="device_sn" property="deviceSn"/> |
| | | <result column="create_user" property="createUser"/> |
| | | <result column="create_dept" property="createDept"/> |
| | | <result column="create_time" property="createTime"/> |
| | |
| | | </if> |
| | | <if test="param2.effectiveRangeKmIsNotNull != null and param2.effectiveRangeKmIsNotNull == 1"> |
| | | and effective_range_km is not null |
| | | and effective_range_km > 0 |
| | | </if> |
| | | <if test="param2.effectiveRangeKmIsNotNull != null and param2.effectiveRangeKmIsNotNull == 2"> |
| | | and effective_range_km is null |
| | | and (effective_range_km is null or effective_range_km = 0) |
| | | </if> |
| | | <if test="param2.manufacturer != null and param2.manufacturer != ''"> |
| | | and manufacturer = #{param2.manufacturer} |
| | |
| | | <where> |
| | | is_deleted = 0 |
| | | <if test="isAreaSelect != null and isAreaSelect == 1"> |
| | | and not exists ( |
| | | select 1 |
| | | from ja_fw_area_divide ad |
| | | where ad.is_deleted = 0 |
| | | and ad.device_ids is not null |
| | | and ad.device_ids != '' |
| | | and find_in_set(ja_fw_device.id, ad.device_ids) |
| | | and ( |
| | | <choose> |
| | | <when test="areaId != null"> |
| | | exists ( |
| | | select 1 |
| | | from ja_fw_area_divide ad |
| | | where ad.is_deleted = 0 |
| | | and ad.id = #{areaId} |
| | | and ad.device_ids is not null |
| | | and ad.device_ids != '' |
| | | and find_in_set(ja_fw_device.id, ad.device_ids) |
| | | ) |
| | | or not exists ( |
| | | select 1 |
| | | from ja_fw_area_divide ad |
| | | where ad.is_deleted = 0 |
| | | and ad.device_ids is not null |
| | | and ad.device_ids != '' |
| | | and find_in_set(ja_fw_device.id, ad.device_ids) |
| | | and ad.id != #{areaId} |
| | | ) |
| | | </when> |
| | | <otherwise> |
| | | not exists ( |
| | | select 1 |
| | | from ja_fw_area_divide ad |
| | | where ad.is_deleted = 0 |
| | | and ad.device_ids is not null |
| | | and ad.device_ids != '' |
| | | and find_in_set(ja_fw_device.id, ad.device_ids) |
| | | ) |
| | | </otherwise> |
| | | </choose> |
| | | ) |
| | | </if> |
| | | </where> |