DemStreetTown.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package com.usky.fire.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import java.io.Serializable;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. /**
  8. * <p>
  9. *
  10. * </p>
  11. *
  12. * @author han
  13. * @since 2023-08-17
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = false)
  17. public class DemStreetTown implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. @TableId(value = "id", type = IdType.AUTO)
  20. private Integer id;
  21. /**
  22. * 行政区
  23. */
  24. private String district;
  25. /**
  26. * 乡镇
  27. */
  28. private String streetTown;
  29. /**
  30. * 镇类别
  31. */
  32. private String townType;
  33. /**
  34. * 建成区面积(km²)
  35. */
  36. private Double builtUpArea;
  37. /**
  38. * 常住人口(万人)
  39. */
  40. private Double permanentPopulation;
  41. /**
  42. * 居住人口(万人)
  43. */
  44. private Double residentPopulation;
  45. /**
  46. * 易燃易爆危险品生产、经营单位数量
  47. */
  48. private Integer dangerousGood;
  49. /**
  50. * 劳动密集型企业数量
  51. */
  52. private Integer labourIntensive;
  53. /**
  54. * 上一年度税收(亿元)
  55. */
  56. private Double lastYearTax;
  57. /**
  58. * 是否已建立国家综合消防救援队(1 是,0 否)
  59. */
  60. private Integer rescueTeam;
  61. /**
  62. * “内部”的国家综合性消防救援队名称
  63. */
  64. private String internalRescueTeam;
  65. /**
  66. * “外部”到达边缘最近的国家队名称
  67. */
  68. private String externalRescueTeam;
  69. /**
  70. * 到达边缘的行车距离或时间
  71. */
  72. private String distanceTime;
  73. /**
  74. * 是否已建设乡镇政府专职消防队
  75. */
  76. private Integer dedicatedFireBrigade;
  77. /**
  78. * 乡镇政府专消防队名称
  79. */
  80. private String specializedFireBrigade;
  81. /**
  82. * 是否接入可视化调度平台
  83. */
  84. private Integer visualizedPlatform;
  85. }