659dced56b9624ee38222d7f8b3485c20d770cb2.svn-base 585 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package cn.com.goldenwater.dcproj.dto;
  2. /**
  3. * 问题统计
  4. */
  5. public class CountType {
  6. private int count;
  7. private String name;
  8. private String villType;
  9. public String getVillType() {
  10. return villType;
  11. }
  12. public void setVillType(String villType) {
  13. this.villType = villType;
  14. }
  15. public int getCount() {
  16. return count;
  17. }
  18. public void setCount(int count) {
  19. this.count = count;
  20. }
  21. public String getName() {
  22. return name;
  23. }
  24. public void setName(String name) {
  25. this.name = name;
  26. }
  27. }