27f3ba278c964e2c50e5e73d6bdd30e5f39d2f7e.svn-base 1022 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. public class VillTypeCount {
  4. @ApiModelProperty("区域编码")
  5. private String code;
  6. @ApiModelProperty("行政村,人饮,水源地,落实情况")
  7. private String inspPblmName;
  8. @ApiModelProperty("问题总计")
  9. private int total;
  10. @ApiModelProperty("所属区域")
  11. private String adFullName;
  12. public String getAdFullName() {
  13. return adFullName;
  14. }
  15. public void setAdFullName(String adFullName) {
  16. this.adFullName = adFullName;
  17. }
  18. public String getCode() {
  19. return code;
  20. }
  21. public void setCode(String code) {
  22. this.code = code;
  23. }
  24. public String getInspPblmName() {
  25. return inspPblmName;
  26. }
  27. public void setInspPblmName(String inspPblmName) {
  28. this.inspPblmName = inspPblmName;
  29. }
  30. public int getTotal() {
  31. return total;
  32. }
  33. public void setTotal(int total) {
  34. this.total = total;
  35. }
  36. }