| 12345678910111213141516171819202122232425262728293031323334353637 |
- package cn.com.goldenwater.dcproj.dto;
- /**
- * 问题统计
- */
- public class CountType {
- private int count;
- private String name;
- private String villType;
- public String getVillType() {
- return villType;
- }
- public void setVillType(String villType) {
- this.villType = villType;
- }
- public int getCount() {
- return count;
- }
- public void setCount(int count) {
- this.count = count;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- }
|