125d0e1ccaf32510eca9c1c071617bbf6acba726.svn-base 433 B

123456789101112131415161718192021222324252627282930313233
  1. package cn.com.goldenwater.dcproj.vo;
  2. import lombok.Data;
  3. @Data
  4. public class JxEcharTotal {
  5. /*
  6. 城市adCode前4位
  7. */
  8. private String cityCode;
  9. /*
  10. 城市名称
  11. */
  12. private String adName;
  13. /*
  14. 督查对象总数
  15. */
  16. private int total1;
  17. /*
  18. 交已填问题对象数量
  19. */
  20. private int total2;
  21. /*
  22. 表完成督查对象数量
  23. */
  24. private int total3;
  25. }