|
@@ -1143,4 +1143,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<include refid="selectCzrkVo"/>
|
|
|
where is_confirm = 'Y' and (village_towns is null or village_towns = '') and is_del ='N'
|
|
|
</select>
|
|
|
+ <select id="selectCzrkListByDeptId" resultMap="CzrkResult">
|
|
|
+ select id, dept_id, create_time, is_del from czrk
|
|
|
+ where 1=1
|
|
|
+ <if test="deptIdList != null and deptIdList.size() > 0">
|
|
|
+ and dept_id in
|
|
|
+ <foreach item="deptId" collection="deptIdList" open="(" separator="," close=")">
|
|
|
+ #{deptId}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
+ <select id="getAllCzrkRegionId" resultMap="CzrkResult">
|
|
|
+ select id, dept_id, region_id, region, village_towns_id, village_towns
|
|
|
+ , village_id, village create_time, is_del, area_id from czrk
|
|
|
+ where region_id = #{regionId};
|
|
|
+ </select>
|
|
|
</mapper>
|