DemFireStation.java 1021 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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-03-31
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = false)
  17. public class DemFireStation implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. * 主键ID
  21. */
  22. @TableId(value = "id", type = IdType.AUTO)
  23. private Integer id;
  24. /**
  25. * 消防站名称
  26. */
  27. private String stationName;
  28. /**
  29. * 消防站地址
  30. */
  31. private String stationAddress;
  32. /**
  33. * 消防站类型;1、一类消防站 2、二类消防站 3、小型消防站
  34. */
  35. private Integer stationType;
  36. /**
  37. * 经度
  38. */
  39. private String longitude;
  40. /**
  41. * 纬度
  42. */
  43. private String latitude;
  44. /**
  45. * 所属街镇
  46. */
  47. private String streetTown;
  48. }