Commit e24f464904dfeb01e8b6cf0172e359a3c42be213

Authored by zq
2 parents 78d0d491 6203a4c0

Merge branch 'minhang' of http://222.66.0.204:8090/panzhaov5/bsth_control.git into minhang

src/main/java/com/bsth/entity/Station.java
@@ -41,6 +41,9 @@ public class Station { @@ -41,6 +41,9 @@ public class Station {
41 // 所在道路编码 41 // 所在道路编码
42 private String roadCoding; 42 private String roadCoding;
43 43
  44 + // 站点的具体地址
  45 + private String addr;
  46 +
44 /** 47 /**
45 * 经纬坐标类型 48 * 经纬坐标类型
46 * 49 *
@@ -111,6 +114,14 @@ public class Station { @@ -111,6 +114,14 @@ public class Station {
111 // 修改日期 114 // 修改日期
112 @Column(name = "update_date", columnDefinition = "timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP") 115 @Column(name = "update_date", columnDefinition = "timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP")
113 private Date updateDate; 116 private Date updateDate;
  117 +
  118 + public String getAddr() {
  119 + return addr;
  120 + }
  121 +
  122 + public void setAddr(String addr) {
  123 + this.addr = addr;
  124 + }
114 125
115 public Integer getId() { 126 public Integer getId() {
116 return id; 127 return id;