| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.BisNewWateruserInfo;
- import io.swagger.annotations.ApiModelProperty;
- public class BisNewWateruserInfoDto extends BisNewWateruserInfo {
- private Double lgtdPc;
- private Double lttdPc;
- @ApiModelProperty(value = "高德经度")
- private Double centerXGd;
- @ApiModelProperty(value = "高德纬度")
- private Double centerYGd;
- @ApiModelProperty("督查对象id")
- private String objId;
- public Double getLgtdPc() {
- return lgtdPc;
- }
- public void setLgtdPc(Double lgtdPc) {
- this.lgtdPc = lgtdPc;
- }
- public Double getLttdPc() {
- return lttdPc;
- }
- public void setLttdPc(Double lttdPc) {
- this.lttdPc = lttdPc;
- }
- public Double getCenterXGd() {
- return centerXGd;
- }
- public void setCenterXGd(Double centerXGd) {
- this.centerXGd = centerXGd;
- }
- public Double getCenterYGd() {
- return centerYGd;
- }
- public void setCenterYGd(Double centerYGd) {
- this.centerYGd = centerYGd;
- }
- @Override
- public String getObjId() {
- return objId;
- }
- @Override
- public void setObjId(String objId) {
- this.objId = objId;
- }
- }
|