LandIdleStatVo.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package com.example.pojo.vo;
  2. import com.example.entity.house.LandIdleStatPo;
  3. import io.swagger.v3.oas.annotations.media.Schema;
  4. import lombok.Data;
  5. import java.math.BigDecimal;
  6. import java.util.ArrayList;
  7. import java.util.List;
  8. @Data
  9. public class LandIdleStatVo {
  10. @Schema(description = "单位名称")
  11. private String city;
  12. @Schema(description = "闲置数量")
  13. private Integer idleNum;
  14. @Schema(description = "土地总面积")
  15. private BigDecimal buildingArea;
  16. @Schema(description = "土地自用面积")
  17. private BigDecimal buildingAreaUseArea;
  18. @Schema(description = "土地不可使用面积")
  19. private BigDecimal buildingAreaUnavailable;
  20. @Schema(description = "土地出租面积")
  21. private BigDecimal buildingAreaRentArea;
  22. @Schema(description = "土地闲置面积")
  23. private BigDecimal buildingAreaIdelArea;
  24. @Schema(description = "闲置率")
  25. private BigDecimal average;
  26. @Schema(description = "子列表")
  27. private List<LandIdleStatVo> children;
  28. @Schema(description = "是否变色")
  29. private Boolean flag;
  30. public LandIdleStatVo(LandIdleStatPo po, Boolean flag) {
  31. this.city = po.getCityName();
  32. this.idleNum = po.getIdleCount();
  33. this.buildingArea = po.getTotalLandAreaSum();
  34. this.buildingAreaUseArea = po.getLandAreaSelfUseSum();
  35. this.buildingAreaUnavailable = po.getLandAreaUnusableSum();
  36. this.buildingAreaRentArea = po.getLandAreaRentSum();
  37. this.buildingAreaIdelArea = po.getLandAreaIdleSum();
  38. if (po.getIdlePercent() != null) {
  39. this.average = po.getIdlePercent().multiply(new BigDecimal("100"));
  40. }
  41. this.flag = flag;
  42. this.children = new ArrayList<>();
  43. List<LandIdleStatPo> list = po.getChildren();
  44. int size = list.size();
  45. for (int i = 0; i < size; i++) {
  46. LandIdleStatPo t = list.get(i);
  47. this.children.add(new LandIdleStatVo(t, flag == (i % 2 != 0)));
  48. }
  49. }
  50. }