BaseCompany.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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. * 联网单位信息表
  11. * </p>
  12. *
  13. * @author JCB
  14. * @since 2022-08-23
  15. */
  16. @Data
  17. @EqualsAndHashCode(callSuper = false)
  18. public class BaseCompany 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 organization;
  37. /**
  38. * 单位名称
  39. */
  40. private String companyName;
  41. /**
  42. * 单位拼音简称
  43. */
  44. private String nameAbbreviation;
  45. /**
  46. * 单位类型
  47. */
  48. private String companyType;
  49. /**
  50. * 单位详细地址
  51. */
  52. private String address;
  53. /**
  54. * 火灾危险性
  55. */
  56. private String fireHazard;
  57. /**
  58. * 邮政编码
  59. */
  60. private String postalCode;
  61. /**
  62. * 邮箱
  63. */
  64. private String mailbox;
  65. /**
  66. * 单位联系人
  67. */
  68. private String linkPerson;
  69. /**
  70. * 单位联系电话
  71. */
  72. private String linkPhone;
  73. /**
  74. * 单位传真
  75. */
  76. private String companyFax;
  77. /**
  78. * 经济所有制
  79. */
  80. private String economicOwnership;
  81. /**
  82. * 单位成立时间
  83. */
  84. private LocalDateTime foundTime;
  85. /**
  86. * 上级主管单位
  87. */
  88. private String upperName;
  89. /**
  90. * 单位等级
  91. */
  92. private Integer companyGrade;
  93. /**
  94. * 单位性质
  95. */
  96. private Integer companyNature;
  97. /**
  98. * 行政区域
  99. */
  100. private String administrativeDivision;
  101. /**
  102. * 行政区域名称
  103. */
  104. private String divisionName;
  105. /**
  106. * 消防管辖
  107. */
  108. private String fireJurisdiction;
  109. /**
  110. * 支队级机构ID填充
  111. */
  112. private String detachmentId;
  113. /**
  114. * 街镇
  115. */
  116. private String streetTown;
  117. /**
  118. * 删除标记
  119. */
  120. private String enable;
  121. /**
  122. * 创建者姓名
  123. */
  124. private String creatorName;
  125. /**
  126. * 创建人
  127. */
  128. private String creator;
  129. /**
  130. * 创建时间
  131. */
  132. private LocalDateTime createTime;
  133. /**
  134. * 更新人姓名
  135. */
  136. private String updatePersonName;
  137. /**
  138. * 修改人的IP
  139. */
  140. private String updatePersonIp;
  141. /**
  142. * 更新人
  143. */
  144. private String updatePerson;
  145. /**
  146. * 更新时间
  147. */
  148. private LocalDateTime updateTime;
  149. }