c14a85bc90b12558aa95d2181238544c2e2b7512.svn-base 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. public class AttCountryDto {
  6. @ApiModelProperty("行政区划编码")
  7. private String adCode;
  8. @ApiModelProperty("行政区划名称")
  9. private String adName;
  10. @ApiModelProperty("")
  11. private String isPoveryt;
  12. @ApiModelProperty("高德经度")
  13. private Double lgtd;
  14. @ApiModelProperty("高德纬度")
  15. private Double lttd;
  16. @ApiModelProperty("是否已经有督查组,1是0否")
  17. private String status;
  18. @ApiModelProperty("督查对象id")
  19. private String objId;
  20. @ApiModelProperty("督查分组id")
  21. private String id;
  22. List<AttCountryDto> attCountryDtoList=new ArrayList<>();
  23. public List<AttCountryDto> getAttCountryDtoList() {
  24. return attCountryDtoList;
  25. }
  26. public void setAttCountryDtoList(List<AttCountryDto> attCountryDtoList) {
  27. this.attCountryDtoList = attCountryDtoList;
  28. }
  29. public String getAdCode() {
  30. return adCode;
  31. }
  32. public void setAdCode(String adCode) {
  33. this.adCode = adCode;
  34. }
  35. public String getAdName() {
  36. return adName;
  37. }
  38. public void setAdName(String adName) {
  39. this.adName = adName;
  40. }
  41. public String getIsPoveryt() {
  42. return isPoveryt;
  43. }
  44. public void setIsPoveryt(String isPoveryt) {
  45. this.isPoveryt = isPoveryt;
  46. }
  47. public Double getLgtd() {
  48. return lgtd;
  49. }
  50. public void setLgtd(Double lgtd) {
  51. this.lgtd = lgtd;
  52. }
  53. public Double getLttd() {
  54. return lttd;
  55. }
  56. public void setLttd(Double lttd) {
  57. this.lttd = lttd;
  58. }
  59. public String getStatus() {
  60. return status;
  61. }
  62. public void setStatus(String status) {
  63. this.status = status;
  64. }
  65. public String getObjId() {
  66. return objId;
  67. }
  68. public void setObjId(String objId) {
  69. this.objId = objId;
  70. }
  71. public String getId() {
  72. return id;
  73. }
  74. public void setId(String id) {
  75. this.id = id;
  76. }
  77. }