BaseCompanyAttach1.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. package com.usky.fire.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import java.time.LocalDateTime;
  5. import java.io.Serializable;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. /**
  9. * <p>
  10. * 联网单位信息附表1
  11. * </p>
  12. *
  13. * @author JCB
  14. * @since 2022-09-20
  15. */
  16. @Data
  17. @EqualsAndHashCode(callSuper = false)
  18. public class BaseCompanyAttach1 implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. * 主键ID
  22. */
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Integer id;
  25. /**
  26. * 单位ID
  27. */
  28. private String companyId;
  29. /**
  30. * 单位编号
  31. */
  32. private String companyCode;
  33. /**
  34. * 支队级机构简称
  35. */
  36. private String detachmentName;
  37. /**
  38. * 管辖机构(含大队)
  39. */
  40. private String governBody;
  41. /**
  42. * 单位属性主分类
  43. */
  44. private String mainAttributeType;
  45. /**
  46. * 单位主属性
  47. */
  48. private String mainAttribute;
  49. /**
  50. * 单位子属性
  51. */
  52. private String sonAttribute;
  53. /**
  54. * 固定资产(单位:万元)
  55. */
  56. private String fixedAssets;
  57. /**
  58. * 职工人数
  59. */
  60. private String employeeNum;
  61. /**
  62. * 营业时最大人数
  63. */
  64. private String businessMaxNum;
  65. /**
  66. * 占地面积
  67. */
  68. private String coverArea;
  69. /**
  70. * 建筑面积
  71. */
  72. private String buildArea;
  73. /**
  74. * 自动消防设施情况
  75. */
  76. private String autoFireFacilities;
  77. /**
  78. * 经度
  79. */
  80. private String longitude;
  81. /**
  82. * 纬度
  83. */
  84. private String latitude;
  85. /**
  86. * 地理情况
  87. */
  88. private String geography;
  89. /**
  90. * 有无避难层
  91. */
  92. private String refugeFloor;
  93. /**
  94. * 避难层数量
  95. */
  96. private String refugeFloorNum;
  97. /**
  98. * 避难层面积
  99. */
  100. private String refugeFloorArea;
  101. /**
  102. * 避难层位置
  103. */
  104. private String refugeFloorPosition;
  105. /**
  106. * 备注
  107. */
  108. private String remarks;
  109. /**
  110. * 单位平面图名称
  111. */
  112. private String planName;
  113. /**
  114. * 单位平面图存放地址
  115. */
  116. private String planUrl;
  117. /**
  118. * 建筑数量
  119. */
  120. private String buildNum;
  121. /**
  122. * 上级消防管辖单位
  123. */
  124. private String superiorFireJurisdiction;
  125. /**
  126. * 实际单位ID
  127. */
  128. private String actualCompanyId;
  129. /**
  130. * GLID
  131. */
  132. private String glId;
  133. /**
  134. * 确定重点单位时间
  135. */
  136. private LocalDateTime determineKeyTime;
  137. /**
  138. * 取消重点单位时间
  139. */
  140. private LocalDateTime cancelKeyTime;
  141. /**
  142. * 操作类型
  143. */
  144. private String operationType;
  145. /**
  146. * 老的单位ID
  147. */
  148. private String oldCompanyId;
  149. /**
  150. * 创建人
  151. */
  152. private String creator;
  153. /**
  154. * 创建时间
  155. */
  156. private LocalDateTime createTime;
  157. /**
  158. * 更新人
  159. */
  160. private String updatePerson;
  161. /**
  162. * 更新时间
  163. */
  164. private LocalDateTime updateTime;
  165. /**
  166. * 注册资金
  167. */
  168. private String registeredCapital;
  169. /**
  170. * 经营状态
  171. */
  172. private String businessStatus;
  173. /**
  174. * 实缴资本
  175. */
  176. private String paidCapital;
  177. /**
  178. * 登记机关
  179. */
  180. private String registrar;
  181. /**
  182. * 竣工年份
  183. */
  184. private String completedTime;
  185. /**
  186. * 耐火等级
  187. */
  188. private String fireRating;
  189. /**
  190. * 建筑高度
  191. */
  192. private String buildingHeight;
  193. /**
  194. * 建筑结构
  195. */
  196. private String buildingStructure;
  197. /**
  198. * 建筑情况
  199. */
  200. private String construction;
  201. }