53 lines
1.1 KiB
Java
53 lines
1.1 KiB
Java
package com.gis3c.spatial.entity;
|
|
|
|
/**
|
|
* Created by hukekuan on 2018/4/12.
|
|
*/
|
|
public class SeparatedRiver extends BaseFeature{
|
|
private String riverCode;
|
|
private String riverName;
|
|
private String stationCode;
|
|
private String stationName;
|
|
private String level;
|
|
|
|
public String getRiverCode() {
|
|
return riverCode;
|
|
}
|
|
|
|
public void setRiverCode(String riverCode) {
|
|
this.riverCode = riverCode;
|
|
}
|
|
|
|
public String getRiverName() {
|
|
return riverName;
|
|
}
|
|
|
|
public void setRiverName(String riverName) {
|
|
this.riverName = riverName;
|
|
}
|
|
|
|
public String getStationCode() {
|
|
return stationCode;
|
|
}
|
|
|
|
public void setStationCode(String stationCode) {
|
|
this.stationCode = stationCode;
|
|
}
|
|
|
|
public String getStationName() {
|
|
return stationName;
|
|
}
|
|
|
|
public void setStationName(String stationName) {
|
|
this.stationName = stationName;
|
|
}
|
|
|
|
public String getLevel() {
|
|
return level;
|
|
}
|
|
|
|
public void setLevel(String level) {
|
|
this.level = level;
|
|
}
|
|
}
|