| | |
| | | <!--自定义分页查询--> |
| | | <select id="selectGridmanPage" resultType="org.springblade.modules.grid.vo.GridmanVO"> |
| | | select |
| | | jgm.*,jg.community_code communityCode |
| | | jgm.*, |
| | | jg.grid_name gridName,jg.community_code communityCode, |
| | | br.name as communityName, |
| | | br.town_name as townName |
| | | from jczz_gridman jgm |
| | | left join jczz_grid jg on jg.id = jgm.grid_id and jg.is_deleted = 0 |
| | | left join blade_region br on br.code = jg.community_code |
| | | where jgm.is_deleted = 0 |
| | | <if test="gridman.gridmanName!=null and gridman.gridmanName!=''"> |
| | | and jgm.gridman_name like concat('%',#{gridman.gridmanName},'%') |
| | |
| | | <if test="gridman.communityCode!=null and gridman.communityCode!=''"> |
| | | and jg.community_code like concat('%',#{gridman.communityCode},'%') |
| | | </if> |
| | | <if test="gridman.communityName!=null and gridman.communityName!=''"> |
| | | and br.name like concat('%',#{gridman.communityName},'%') |
| | | </if> |
| | | <if test="gridman.townName!=null and gridman.townName!=''"> |
| | | and br.town_name like concat('%',#{gridman.townName},'%') |
| | | </if> |
| | | <if test="gridman.regionCode != null and gridman.regionCode !='' "> |
| | | and jg.community_code like concat('%',#{gridman.regionCode},'%') |
| | | </if> |
| | | </select> |
| | | |
| | | <!--自定义分页查询--> |