HouseLandDao.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package com.example.dao.house;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.example.entity.house.HouseLandPo;
  4. import com.example.entity.house.LandIdleStatPo;
  5. import com.example.pojo.bo.LandIdleStatBo;
  6. import com.example.pojo.bo.ListLandBo;
  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 HouseLandDao {
  13. /**
  14. * 不动产土地闲置统计
  15. */
  16. @Select("""
  17. <script>
  18. with
  19. t101 as (
  20. select
  21. area_no,
  22. city_no,
  23. count(land_area_idle <![CDATA[ > ]]> 0 or null) as idle_count,
  24. sum(total_land_area) as total_land_area_sum,
  25. sum(land_area_self_use) as land_area_self_use_sum,
  26. sum(land_area_unusable) as land_area_unusable_sum,
  27. sum(land_area_rent) as land_area_rent_sum,
  28. sum(land_area_idle) as land_area_idle_sum,
  29. case
  30. when (sum(land_area_idle) + sum(land_area_rent)) = 0 then null
  31. else round(sum(land_area_idle) / (sum(land_area_idle) + sum(land_area_rent)),
  32. 4)
  33. end as idle_percent
  34. from
  35. house.land_month
  36. <choose>
  37. <when test="dto.yearMonth != null">
  38. where year_month = #{dto.yearMonth}
  39. </when>
  40. <otherwise>
  41. where year_month = (select max(year_month) from house.land_month)
  42. </otherwise>
  43. </choose>
  44. <if test="dto.areaNo != null and dto.areaNo != ''">
  45. and area_no = #{dto.areaNo}
  46. </if>
  47. <if test="dto.cityNo != null and dto.cityNo != ''">
  48. and city_no = #{dto.cityNo}
  49. </if>
  50. group by
  51. area_no,
  52. city_no
  53. ),
  54. t102 as (
  55. select
  56. b.id as area_no,
  57. b."name" as area_name,
  58. a.id as city_no,
  59. a."name" as city_name,
  60. coalesce(c.idle_count, 0) as idle_count,
  61. coalesce(c.total_land_area_sum, 0) as total_land_area_sum,
  62. coalesce(c.land_area_self_use_sum, 0) as land_area_self_use_sum,
  63. coalesce(c.land_area_unusable_sum, 0) as land_area_unusable_sum,
  64. coalesce(c.land_area_rent_sum, 0) as land_area_rent_sum,
  65. coalesce(c.land_area_idle_sum, 0) as land_area_idle_sum,
  66. c.idle_percent as idle_percent
  67. from
  68. common.organization a
  69. left join common.organization b on
  70. a.parent_id = b.id
  71. left join t101 c on
  72. a.id = c.city_no
  73. where
  74. a.grade = 2
  75. and a.unhide = 1
  76. <if test="dto.areaNo != null and dto.areaNo != ''">
  77. and a.parent_id = #{dto.areaNo}
  78. </if>
  79. <if test="dto.cityNo != null and dto.cityNo != ''">
  80. and a.id = #{dto.cityNo}
  81. </if>
  82. order by
  83. b.order_num, a.order_num
  84. )
  85. select * from t102
  86. </script>
  87. """)
  88. List<LandIdleStatPo> landIdleStat(@Param("dto") LandIdleStatBo dto);
  89. /**
  90. * 查询不动产土地
  91. */
  92. @Select("""
  93. <script>
  94. select
  95. *
  96. from house.land_month
  97. <choose>
  98. <when test="dto.yearMonth != null">
  99. where year_month = #{dto.yearMonth}
  100. </when>
  101. <otherwise>
  102. where year_month = (select max(year_month) from house.land_month)
  103. </otherwise>
  104. </choose>
  105. <if test="dto.areaNo != null and dto.areaNo != ''">
  106. and area_no = #{dto.areaNo}
  107. </if>
  108. <if test="dto.cityNo != null and dto.cityNo != ''">
  109. and city_no = #{dto.cityNo}
  110. </if>
  111. <if test="dto.siteName != null and dto.siteName != ''">
  112. and site_name = #{dto.siteName}
  113. </if>
  114. <if test="dto.siteNum != null and dto.siteNum != ''">
  115. and site_num = #{dto.siteNum}
  116. </if>
  117. </script>
  118. """)
  119. List<HouseLandPo> listLand(Page<HouseLandPo> page, @Param("dto") ListLandBo dto);
  120. }