package com.example.dao.gdc; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.example.config.mybatis.ex.method.ExBaseMapper; import com.example.pojo.gdc.OtnAreaEntity; import com.example.pojo.po.house.HouseSitePo; import com.example.pojo.bo.ListHouseSiteBo; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; @Mapper public interface WzOtnAreaDao extends ExBaseMapper { /** * 根据父级组织机构id查询子组织机构 * @param parentId 父级组织机构id */ @Select(""" select id, '河北' as province, name, grade as level, order_num as weight, parent_id from common.organization where unhide = 1 and parent_id = #{parentId} order by order_num """) List listByParentId(@Param("parentId") String parentId); /** * 根据id查询组织机构 * @param id 组织机构id */ @Select(""" select id, '河北' as province, name, grade as level, order_num as weight, parent_id from common.organization where unhide = 1 and id = #{id} """) OtnAreaEntity getById(@Param("id") String id); /** * 根据组织机构名称查询组织机构 * @param name 组织机构名称 */ @Select(""" select id, '河北' as province, name, grade as level, order_num as weight, parent_id from common.organization where unhide = 1 and name = #{name} limit 1 """) OtnAreaEntity getByName(@Param("name") String name); List getCityOption(Long parentId); OtnAreaEntity queryObjectById(Long id); // List queryVoList(Map map); // // List queryLeaveUseList(Map map); /** * 查询局址列表 */ @Select(""" """) List listHouseSite(Page page, @Param("bo") ListHouseSiteBo bo); }