| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import io.swagger.annotations.ApiModelProperty;
- public class DepBase extends BaseBean {
- // 单位名称
- @ApiModelProperty(value = "单位名称", name = "depName")
- private String depName;
- // 所在地行政区编码
- @ApiModelProperty(value = "所在地行政区编码", name = "adCode")
- private String adCode;
- // 所在地行政区
- @ApiModelProperty(value = "所在地行政区", name = "adName")
- private String adName;
- // 取水许可证号
- @ApiModelProperty(value = "取水许可证号", name = "wintCode")
- private String wintCode;
- // 单位地址
- @ApiModelProperty(value = "单位地址", name = "loc")
- private String loc;
- // 联系人
- @ApiModelProperty(value = "联系人", name = "depPers")
- private String depPers;
- // 联系电话
- @ApiModelProperty(value = "联系电话", name = "depPersTel")
- private String depPersTel;
- // 单位负责人
- @ApiModelProperty(value = "单位负责人", name = "utLead")
- private String utLead;
- // 负责人电话
- @ApiModelProperty(value = "负责人电话", name = "principalTel")
- private String principalTel;
- // 备注
- @ApiModelProperty(value = "备注", name = "note")
- private String note;
- // 经度
- @ApiModelProperty(value = "经度", name = "centerX")
- private Double centerX;
- // 纬度
- @ApiModelProperty(value = "纬度", name = "centerY")
- private Double centerY;
- // 高德经度
- @ApiModelProperty(value = "高德经度", name = "gdX")
- private Double gdX;
- // 高德纬度
- @ApiModelProperty(value = "高德纬度", name = "gdY")
- private Double gdY;
- public String getDepName() {
- return depName;
- }
- public void setDepName(String depName) {
- this.depName = depName;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getWintCode() {
- return wintCode;
- }
- public void setWintCode(String wintCode) {
- this.wintCode = wintCode;
- }
- public String getLoc() {
- return loc;
- }
- public void setLoc(String loc) {
- this.loc = loc;
- }
- public String getDepPers() {
- return depPers;
- }
- public void setDepPers(String depPers) {
- this.depPers = depPers;
- }
- public String getDepPersTel() {
- return depPersTel;
- }
- public void setDepPersTel(String depPersTel) {
- this.depPersTel = depPersTel;
- }
- public String getUtLead() {
- return utLead;
- }
- public void setUtLead(String utLead) {
- this.utLead = utLead;
- }
- public String getPrincipalTel() {
- return principalTel;
- }
- public void setPrincipalTel(String principalTel) {
- this.principalTel = principalTel;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public Double getCenterX() {
- return centerX;
- }
- public void setCenterX(Double centerX) {
- this.centerX = centerX;
- }
- public Double getCenterY() {
- return centerY;
- }
- public void setCenterY(Double centerY) {
- this.centerY = centerY;
- }
- public Double getGdX() {
- return gdX;
- }
- public void setGdX(Double gdX) {
- this.gdX = gdX;
- }
- public Double getGdY() {
- return gdY;
- }
- public void setGdY(Double gdY) {
- this.gdY = gdY;
- }
- @Override
- public String toString() {
- return "DepBase{" +
- "depName='" + depName + '\'' +
- ", adCode='" + adCode + '\'' +
- ", adName='" + adName + '\'' +
- ", wintCode='" + wintCode + '\'' +
- ", loc='" + loc + '\'' +
- ", depPers='" + depPers + '\'' +
- ", depPersTel='" + depPersTel + '\'' +
- ", utLead='" + utLead + '\'' +
- ", principalTel='" + principalTel + '\'' +
- ", note='" + note + '\'' +
- ", centerX=" + centerX +
- ", centerY=" + centerY +
- ", gdX=" + gdX +
- ", gdY=" + gdY +
- "} " + super.toString();
- }
- }
|