DemWaterSourceMaintain.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import java.io.Serializable;
  8. import java.time.LocalDateTime;
  9. /**
  10. * <p>
  11. * 天然水源信息表
  12. * </p>
  13. *
  14. * @author JCB
  15. * @since 2022-10-25
  16. */
  17. @Data
  18. @EqualsAndHashCode(callSuper = false)
  19. public class DemWaterSourceMaintain implements Serializable {
  20. private static final long serialVersionUID = 1L;
  21. /**
  22. * 主键ID
  23. */
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Integer id;
  26. /**
  27. * 支队
  28. */
  29. private String detachment;
  30. /**
  31. * 中队
  32. */
  33. private String squadron;
  34. /**
  35. * 取水点位置描述
  36. */
  37. @TableField(value = "describe")
  38. private String describe;
  39. /**
  40. * 创建时间
  41. */
  42. private LocalDateTime createTime;
  43. /**
  44. * 创建人
  45. */
  46. private String creator;
  47. /**
  48. * 更新时间
  49. */
  50. private LocalDateTime updateTime;
  51. /**
  52. * 更新人
  53. */
  54. private String updatePerson;
  55. /**
  56. * 删除标识
  57. */
  58. private String deleteFlag;
  59. /**
  60. * 经度
  61. */
  62. private String longitude;
  63. /**
  64. * 纬度
  65. */
  66. private String latitude;
  67. }