HouseSiteStatDao.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. package com.example.dao.house;
  2. import com.example.entity.house.HouseBuildingPo;
  3. import com.example.entity.house.HouseSiteBuildingAreaIdleDiffPo;
  4. import com.example.entity.house.HouseSitePo;
  5. import com.example.entity.house.HouseSiteRepairInvestorStatPo;
  6. import com.example.entity.house.HouseSiteRepairMonthPo;
  7. import org.apache.ibatis.annotations.Mapper;
  8. import org.apache.ibatis.annotations.Param;
  9. import org.apache.ibatis.annotations.Select;
  10. import java.math.BigDecimal;
  11. import java.util.List;
  12. @Mapper
  13. public interface HouseSiteStatDao {
  14. /**
  15. * 根据账期和局址id查询局址信息
  16. * @param yearMonth 账期
  17. * @param siteId 局址id
  18. */
  19. @Select("""
  20. select * from house.site_month where year_month <= #{yearMonth} and site_id = #{siteId} order by year_month desc limit 1
  21. """)
  22. HouseSitePo getHouseSiteBySiteIdAndYearMonth(@Param("yearMonth") Integer yearMonth, @Param("siteId") String siteId);
  23. /**
  24. * 根据账期和局址id查询所有建筑
  25. * @param yearMonth 账期
  26. * @param siteId 局址id
  27. */
  28. @Select("""
  29. select * from house.building_month
  30. where year_month = (select max(year_month) from house.building_month where year_month <= #{yearMonth})
  31. and site_id = #{siteId}
  32. """)
  33. List<HouseBuildingPo> allBuildingBySiteIdAndYearMonth(@Param("yearMonth") Integer yearMonth,
  34. @Param("siteId") String siteId);
  35. /**
  36. * 根据账期和局址id查询土地总面积
  37. * @param yearMonth 账期
  38. * @param siteId 局址id
  39. */
  40. @Select("""
  41. select
  42. sum(total_land_area) as land_area_sum
  43. from
  44. house.land_month
  45. where
  46. year_month = (select max(year_month) from house.land_month where year_month <= #{yearMonth})
  47. and site_id = #{siteId}
  48. """)
  49. BigDecimal getLandAreaBySiteIdAndYearMonth(@Param("yearMonth") Integer yearMonth, @Param("siteId") String siteId);
  50. /**
  51. * 根据局址id查询当年累计维修费按投资主体分组
  52. * @param startYearMonth 开始年月
  53. * @param endYearMonth 结束年月
  54. * @param siteId 局址id
  55. */
  56. @Select("""
  57. select
  58. sum(case when investor = 1 then final_cost else 0 end) as building_repair_ss,
  59. sum(case when investor = 3 then final_cost else 0 end) as building_repair_cx
  60. from
  61. house.building_repair_month
  62. where
  63. year_month >= #{startYearMonth}
  64. and year_month <= #{endYearMonth}
  65. and site_id = #{siteId}
  66. """)
  67. HouseSiteRepairInvestorStatPo getSiteRepairInvestorStat(@Param("startYearMonth") Integer startYearMonth,
  68. @Param("endYearMonth") Integer endYearMonth,
  69. @Param("siteId") String siteId);
  70. /**
  71. * 根据局址id查询分月维修费
  72. * @param startYearMonth 开始年月
  73. * @param endYearMonth 结束年月
  74. * @param siteId 局址id
  75. */
  76. @Select("""
  77. select
  78. month_no,
  79. sum(final_cost) as final_cost_sum
  80. from
  81. house.building_repair_month
  82. where
  83. year_month >= #{startYearMonth}
  84. and year_month <= #{endYearMonth}
  85. and site_id = #{siteId}
  86. group by month_no
  87. order by month_no
  88. """)
  89. List<HouseSiteRepairMonthPo> getHouseSiteRepairMonth(@Param("startYearMonth") Integer startYearMonth,
  90. @Param("endYearMonth") Integer endYearMonth,
  91. @Param("siteId") String siteId);
  92. @Select("""
  93. with
  94. t101 as (
  95. select
  96. case
  97. when (sum(building_area_idle) + sum(building_area_rent)) = 0 then 0
  98. else round(sum(building_area_idle) / (sum(building_area_idle) + sum(building_area_rent)) * 100,
  99. 2)
  100. end as building_area_idle_rate_past
  101. from
  102. house.building_month
  103. where
  104. year_month = #{startYearMonth}
  105. and site_id = #{siteId}
  106. ),
  107. t102 as (
  108. select
  109. case
  110. when (sum(building_area_idle) + sum(building_area_rent)) = 0 then 0
  111. else round(sum(building_area_idle) / (sum(building_area_idle) + sum(building_area_rent)) * 100,
  112. 2)
  113. end as building_area_idle_rate_now
  114. from
  115. house.building_month
  116. where
  117. year_month = #{endYearMonth}
  118. and site_id = #{siteId}
  119. ),
  120. t103 as (
  121. select
  122. *,
  123. building_area_idle_rate_now - building_area_idle_rate_past as building_area_idle_rate_diff
  124. from
  125. t101
  126. cross join t102
  127. )
  128. select
  129. *
  130. from
  131. t103
  132. """)
  133. HouseSiteBuildingAreaIdleDiffPo getSiteBuildingAreaIdleDiff(@Param("startYearMonth") Integer startYearMonth,
  134. @Param("endYearMonth") Integer endYearMonth,
  135. @Param("siteId") String siteId);
  136. }