| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package cn.com.goldenwater.dcproj.dto;
- import io.swagger.annotations.ApiModelProperty;
- import java.util.ArrayList;
- import java.util.List;
- public class AttCountryDto {
- @ApiModelProperty("行政区划编码")
- private String adCode;
- @ApiModelProperty("行政区划名称")
- private String adName;
- @ApiModelProperty("")
- private String isPoveryt;
- @ApiModelProperty("高德经度")
- private Double lgtd;
- @ApiModelProperty("高德纬度")
- private Double lttd;
- @ApiModelProperty("是否已经有督查组,1是0否")
- private String status;
- @ApiModelProperty("督查对象id")
- private String objId;
- @ApiModelProperty("督查分组id")
- private String id;
- List<AttCountryDto> attCountryDtoList=new ArrayList<>();
- public List<AttCountryDto> getAttCountryDtoList() {
- return attCountryDtoList;
- }
- public void setAttCountryDtoList(List<AttCountryDto> attCountryDtoList) {
- this.attCountryDtoList = attCountryDtoList;
- }
- 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 getIsPoveryt() {
- return isPoveryt;
- }
- public void setIsPoveryt(String isPoveryt) {
- this.isPoveryt = isPoveryt;
- }
- public Double getLgtd() {
- return lgtd;
- }
- public void setLgtd(Double lgtd) {
- this.lgtd = lgtd;
- }
- public Double getLttd() {
- return lttd;
- }
- public void setLttd(Double lttd) {
- this.lttd = lttd;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public String getObjId() {
- return objId;
- }
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- }
|