WzOtnAreaDao.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. package com.example.dao.gdc;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.example.config.mybatis.ex.method.ExBaseMapper;
  4. import com.example.pojo.gdc.OtnAreaEntity;
  5. import com.example.pojo.po.house.HouseSitePo;
  6. import com.example.pojo.bo.ListHouseSiteBo;
  7. import org.apache.ibatis.annotations.Mapper;
  8. import org.apache.ibatis.annotations.Param;
  9. import org.apache.ibatis.annotations.Select;
  10. import java.util.List;
  11. @Mapper
  12. public interface WzOtnAreaDao extends ExBaseMapper<OtnAreaEntity> {
  13. /**
  14. * 根据父级组织机构id查询子组织机构
  15. * @param parentId 父级组织机构id
  16. */
  17. @Select("""
  18. select
  19. id,
  20. '河北' as province,
  21. name,
  22. grade as level,
  23. order_num as weight,
  24. parent_id
  25. from
  26. common.organization
  27. where
  28. unhide = 1
  29. and parent_id = #{parentId}
  30. order by
  31. order_num
  32. """)
  33. List<OtnAreaEntity> listByParentId(@Param("parentId") String parentId);
  34. /**
  35. * 根据id查询组织机构
  36. * @param id 组织机构id
  37. */
  38. @Select("""
  39. select
  40. id,
  41. '河北' as province,
  42. name,
  43. grade as level,
  44. order_num as weight,
  45. parent_id
  46. from
  47. common.organization
  48. where
  49. unhide = 1
  50. and id = #{id}
  51. """)
  52. OtnAreaEntity getById(@Param("id") String id);
  53. /**
  54. * 根据组织机构名称查询组织机构
  55. * @param name 组织机构名称
  56. */
  57. @Select("""
  58. select
  59. id,
  60. '河北' as province,
  61. name,
  62. grade as level,
  63. order_num as weight,
  64. parent_id
  65. from
  66. common.organization
  67. where
  68. unhide = 1
  69. and name = #{name}
  70. limit 1
  71. """)
  72. OtnAreaEntity getByName(@Param("name") String name);
  73. List<OtnAreaEntity> getCityOption(Long parentId);
  74. OtnAreaEntity queryObjectById(Long id);
  75. // List<WzHouseContractVo> queryVoList(Map<String, Object> map);
  76. //
  77. // List<FloorNoUserVo> queryLeaveUseList(Map<String, Object> map);
  78. /**
  79. * 查询局址列表
  80. */
  81. @Select("""
  82. <script>
  83. select
  84. site_id,
  85. site_num,
  86. site_name
  87. from
  88. house.site_month
  89. where
  90. year_month = (select max(year_month) from house.site_month)
  91. <if test="bo.areaNo != null and bo.areaNo != ''">
  92. and area_no = #{bo.areaNo}
  93. </if>
  94. <if test="bo.cityNo != null and bo.cityNo != ''">
  95. and city_no = #{bo.cityNo}
  96. </if>
  97. <if test="bo.siteNum != null and bo.siteNum != ''">
  98. and site_num like #{bo.siteNum} || '%'
  99. </if>
  100. <if test="bo.siteName != null and bo.siteName != ''">
  101. and site_name like '%' || #{bo.siteName} || '%'
  102. </if>
  103. order by site_id
  104. </script>
  105. """)
  106. List<HouseSitePo> listHouseSite(Page<HouseSitePo> page, @Param("bo") ListHouseSiteBo bo);
  107. }