| | |
| | | |
| | | <select id="selectTaskPage" resultMap="taskResultMap"> |
| | | SELECT |
| | | IFNULL( jda.address_name, jp.location ) address_name, |
| | | IFNULL( jda.address_name, jp.location ) AS address_name, |
| | | jgr.district_code aoiCode, |
| | | jda.region_code, |
| | | jg.community_code neiCode, |
| | | jc.street_code streetCode, |
| | | bu.name realName, |
| | | bu.phone, |
| | | jt.id, |
| | | jt.NAME, |
| | | jt.type, |
| | |
| | | jczz_task jt |
| | | LEFT JOIN jczz_doorplate_address jda ON jda.address_code = jt.house_code |
| | | LEFT JOIN jczz_place jp ON jp.house_code = jt.house_code |
| | | LEFT JOIN blade_user bu on bu.id = jt.create_user |
| | | LEFT JOIN jczz_grid_range jgr on jgr.house_code= jt.house_code |
| | | LEFT JOIN jczz_grid jg on jg.id = jgr.grid_id |
| | | LEFT JOIN jczz_community jc on jc.`code`= jg.community_code |
| | | <where> |
| | | <if test="task.userId != null and task.userId != ''"> |
| | | AND jt.house_code IN ( |
| | |
| | | <if test="task.status != null and task.status != null"> |
| | | and jt.status = #{task.status} |
| | | </if> |
| | | |
| | | <if test="task.aoiCode != null and task.aoiCode != null"> |
| | | and jgr.district_code = #{task.aoiCode} |
| | | </if> |
| | | |
| | | <if test="task.neiCode != null and task.neiCode != null"> |
| | | and jg.community_code = #{task.neiCode} |
| | | </if> |
| | | |
| | | <if test="task.streetCode != null and task.streetCode != null"> |
| | | and jc.street_code = #{task.streetCode} |
| | | </if> |
| | | |
| | | <if test="task.frequency != null and task.frequency != ''"> |
| | | and jt.frequency = #{task.frequency} |
| | | </if> |
| | |
| | | and jt.report_type in (2,3,4,5,6) |
| | | </if> |
| | | and jt.is_deleted = 0 |
| | | and jt.house_code is not null |
| | | order by jt.create_time desc |
| | | </where> |
| | | </select> |