| 12345678910111213141516171819202122232425262728293031323334353637 |
- package cn.com.goldenwater.dcproj.model;
- import io.swagger.annotations.ApiModelProperty;
- public class KeyRegCount {
- @ApiModelProperty("省份")
- private String adFullName;
- @ApiModelProperty("数量")
- private int total;
- @ApiModelProperty("严重等级")
- private String inspPblmCate;
- public String getAdFullName() {
- return adFullName;
- }
- public void setAdFullName(String adFullName) {
- this.adFullName = adFullName;
- }
- public int getTotal() {
- return total;
- }
- public void setTotal(int total) {
- this.total = total;
- }
- public String getInspPblmCate() {
- return inspPblmCate;
- }
- public void setInspPblmCate(String inspPblmCate) {
- this.inspPblmCate = inspPblmCate;
- }
- }
|