Commit d230086c by yangyang

湖南机场、火车点位字典查询(湖南)

parent 0d1d86d3
package com.founder.commonutils.model.newPublicEntity;
/**
* 数据字典--交通
*/
public class DictitemJt {
//标识名称
private String bsmc;
//经度
private double jd;
//纬度
private double wd;
public String getBsmc() {
return bsmc;
}
public void setBsmc(String bsmc) {
this.bsmc = bsmc;
}
public double getJd() {
return jd;
}
public void setJd(double jd) {
this.jd = jd;
}
public double getWd() {
return wd;
}
public void setWd(double wd) {
this.wd = wd;
}
@Override
public String toString() {
return "DictitemJt{" +
"bsmc='" + bsmc + '\'' +
", jd='" + jd + '\'' +
", wd='" + wd + '\'' +
'}';
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment