PatrolInspectionSite.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. package com.usky.fire.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import java.time.LocalDateTime;
  6. import java.io.Serializable;
  7. import java.util.List;
  8. import lombok.Data;
  9. import lombok.EqualsAndHashCode;
  10. import lombok.experimental.Accessors;
  11. /**
  12. * <p>
  13. *
  14. * </p>
  15. *
  16. * @author JCB
  17. * @since 2022-07-13
  18. */
  19. @Data
  20. @EqualsAndHashCode(callSuper = false)
  21. @Accessors(chain = true)
  22. public class PatrolInspectionSite implements Serializable {
  23. private static final long serialVersionUID=1L;
  24. /**
  25. * 巡检地点信息表主键ID
  26. */
  27. @TableId(value = "id", type = IdType.AUTO)
  28. private Integer id;
  29. /**
  30. * 地点名称
  31. */
  32. private String siteName;
  33. /**
  34. * 地点号码
  35. */
  36. private String siteNubmber;
  37. /**
  38. * 地点描述
  39. */
  40. private String siteDescribe;
  41. /**
  42. * 地点类型
  43. */
  44. private Integer siteType;
  45. /**
  46. * 采集人员
  47. */
  48. private String collector;
  49. /**
  50. * 采集时间
  51. */
  52. private LocalDateTime collectTime;
  53. /**
  54. * 经度
  55. */
  56. private String longitude;
  57. /**
  58. * 纬度
  59. */
  60. private String latitude;
  61. /**
  62. * 区域id
  63. */
  64. private Integer areaId;
  65. /**
  66. * 图片地址
  67. */
  68. private String pictureUrl;
  69. /**
  70. * 创建时间
  71. */
  72. private LocalDateTime createTime;
  73. /**
  74. * 创建人
  75. */
  76. private String creator;
  77. /**
  78. * 使能标识(0 不生效,1 生效)
  79. */
  80. private Integer enable;
  81. /**
  82. * 误差范围
  83. */
  84. private Double distanceRange;
  85. /**
  86. * 租户ID
  87. */
  88. private Integer tenantId;
  89. /**
  90. * 单位ID
  91. */
  92. private Integer companyId;
  93. /**
  94. * 地点内容总数
  95. */
  96. @TableField(exist = false)
  97. private Integer contentCount;
  98. /**
  99. * 图片
  100. */
  101. @TableField(exist = false)
  102. private List<PatrolInspectionRecordPicture> recordPictureList;
  103. /**
  104. * 备注
  105. */
  106. @TableField(exist = false)
  107. private String remarks;
  108. }