fe649362fb15b45f21ef7442a835a9c77c855d6f.svn-base 784 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package cn.com.goldenwater.dcproj.model;
  2. import io.swagger.annotations.ApiModelProperty;
  3. public class KeyRegCount {
  4. @ApiModelProperty("省份")
  5. private String adFullName;
  6. @ApiModelProperty("数量")
  7. private int total;
  8. @ApiModelProperty("严重等级")
  9. private String inspPblmCate;
  10. public String getAdFullName() {
  11. return adFullName;
  12. }
  13. public void setAdFullName(String adFullName) {
  14. this.adFullName = adFullName;
  15. }
  16. public int getTotal() {
  17. return total;
  18. }
  19. public void setTotal(int total) {
  20. this.total = total;
  21. }
  22. public String getInspPblmCate() {
  23. return inspPblmCate;
  24. }
  25. public void setInspPblmCate(String inspPblmCate) {
  26. this.inspPblmCate = inspPblmCate;
  27. }
  28. }