Site.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. package com.bizmatics.model;
  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. import lombok.experimental.Accessors;
  9. /**
  10. * <p>
  11. *
  12. * </p>
  13. *
  14. * @author ya
  15. * @since 2021-07-07
  16. */
  17. @Data
  18. @EqualsAndHashCode(callSuper = false)
  19. @Accessors(chain = true)
  20. public class Site implements Serializable {
  21. private static final long serialVersionUID=1L;
  22. /**
  23. * 站点表ID
  24. */
  25. @TableId(value = "id", type = IdType.AUTO)
  26. private Integer id;
  27. /**
  28. * 站点名称
  29. */
  30. private String siteName;
  31. /**
  32. * 站点位置
  33. */
  34. private String siteAddress;
  35. /**
  36. * 所属单位
  37. */
  38. private Integer companyCode;
  39. /**
  40. * 联系人
  41. */
  42. private String userName;
  43. /**
  44. * 手机号码
  45. */
  46. private String phone;
  47. /**
  48. * 所属台区
  49. */
  50. private Integer stationAreaId;
  51. /**
  52. * 所属线路
  53. */
  54. private Integer routeId;
  55. /**
  56. * 经度
  57. */
  58. private String longitude;
  59. /**
  60. * 纬度
  61. */
  62. private String latitude;
  63. /**
  64. * 所属区域(1 宝山,2 嘉定)
  65. */
  66. private Integer region;
  67. /**
  68. * 创建时间
  69. */
  70. private LocalDateTime createTime;
  71. /**
  72. * 创建人
  73. */
  74. private String creator;
  75. /**
  76. * 使能标识(0 不生效,1 生效)
  77. */
  78. private Integer enable;
  79. private String installedCapacity;
  80. }