| | |
| | | <select id="getGridWorkCountHandleCount" resultType="java.lang.Integer"> |
| | | select count(*) from jczz_grid_work_log jgwl |
| | | left join jczz_household jh on jgwl.household_id = jh.id and jh.is_deleted = 0 |
| | | left join jczz_grid_range jgr on jgr.house_code=jh.house_code |
| | | left join jczz_house jhs on jhs.house_code=jh.house_code |
| | | where jgwl.is_deleted = 0 |
| | | <if test="status!=null"> |
| | | and jgwl.status = #{status} |
| | | </if> |
| | | <if test="gridId!=null"> |
| | | and jgr.grid_id = #{gridId} |
| | | <if test="gridCode!=null and gridCode!=''"> |
| | | and jhs.grid_code = #{gridCode} |
| | | </if> |
| | | </select> |
| | | |