LandPriceEstimation.java 567 B

1234567891011121314151617181920212223242526272829303132
  1. package com.onemap.sanya.domain;
  2. import lombok.AllArgsConstructor;
  3. import lombok.Data;
  4. import lombok.NoArgsConstructor;
  5. /**
  6. * 用地地价预估
  7. * @author Zzz
  8. * @create 2024/6/13 15:12
  9. */
  10. @Data
  11. @NoArgsConstructor
  12. @AllArgsConstructor
  13. public class LandPriceEstimation {
  14. /**
  15. * 级别
  16. */
  17. private String lv;
  18. /**
  19. * 地价(元/平方米)
  20. */
  21. private Double landPrice;
  22. /**
  23. * 土地面积(平方米)
  24. */
  25. private Double area;
  26. /**
  27. * 土地面积(平方米)
  28. */
  29. private Double landPriceES;
  30. }