HouseWzLandManageDetailsService.java 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package com.example.service.house;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.example.common.PageVo;
  4. import com.example.common.Rsp;
  5. import com.example.dao.WzOtnAreaDao;
  6. import com.example.entity.house.HouseSitePo;
  7. import com.example.pojo.bo.ListHouseSiteBo;
  8. import com.example.pojo.dto.ListSiteNameDto;
  9. import com.example.pojo.dto.ListSiteNumDto;
  10. import lombok.extern.slf4j.Slf4j;
  11. import org.springframework.stereotype.Service;
  12. import java.time.LocalDate;
  13. import java.time.format.DateTimeFormatter;
  14. import java.util.List;
  15. @Slf4j
  16. @Service
  17. public class HouseWzLandManageDetailsService {
  18. private final WzOtnAreaDao wzOtnAreaDao;
  19. public HouseWzLandManageDetailsService(WzOtnAreaDao wzOtnAreaDao) {
  20. this.wzOtnAreaDao = wzOtnAreaDao;
  21. }
  22. public Rsp<PageVo<String>> listSiteName(ListSiteNameDto dto) {
  23. Integer yearMonth = dto.getMap().getStatisticalMonth();
  24. if (yearMonth == null) {
  25. yearMonth = Integer.valueOf(LocalDate.now().minusDays(40)
  26. .format(DateTimeFormatter.ofPattern("yyyyMM")));
  27. }
  28. if ("全省".equals(dto.getMap().getCity())) {
  29. dto.getMap().setCity(null);
  30. dto.getMap().setCounty(null);
  31. }
  32. ListHouseSiteBo bo = new ListHouseSiteBo();
  33. bo.setYearMonth(yearMonth);
  34. bo.setAreaNo(dto.getMap().getCity());
  35. bo.setCityNo(dto.getMap().getCounty());
  36. bo.setSiteName(dto.getMap().getAlias());
  37. Page<HouseSitePo> page = new Page<>(dto.getPage().getPageNum(), dto.getPage().getPageSize());
  38. List<HouseSitePo> list = wzOtnAreaDao.listHouseSite(page, bo);
  39. List<String> vos = list.stream().map(HouseSitePo::getSiteName).toList();
  40. PageVo<String> pageVo = new PageVo<>(vos, page);
  41. return Rsp.ok(pageVo);
  42. }
  43. public Rsp<PageVo<String>> listSiteNum(ListSiteNumDto dto) {
  44. Integer yearMonth = dto.getMap().getStatisticalMonth();
  45. if (yearMonth == null) {
  46. yearMonth = Integer.valueOf(LocalDate.now().minusDays(40)
  47. .format(DateTimeFormatter.ofPattern("yyyyMM")));
  48. }
  49. if ("全省".equals(dto.getMap().getCity())) {
  50. dto.getMap().setCity(null);
  51. dto.getMap().setCounty(null);
  52. }
  53. ListHouseSiteBo bo = new ListHouseSiteBo();
  54. bo.setYearMonth(yearMonth);
  55. bo.setAreaNo(dto.getMap().getCity());
  56. bo.setCityNo(dto.getMap().getCounty());
  57. bo.setSiteNum(dto.getMap().getCode());
  58. Page<HouseSitePo> page = new Page<>(dto.getPage().getPageNum(), dto.getPage().getPageSize());
  59. List<HouseSitePo> list = wzOtnAreaDao.listHouseSite(page, bo);
  60. List<String> vos = list.stream().map(HouseSitePo::getSiteNum).toList();
  61. PageVo<String> pageVo = new PageVo<>(vos, page);
  62. return Rsp.ok(pageVo);
  63. }
  64. }