| 123456789101112131415161718192021222324252627282930313233 |
- package cn.com.goldenwater.dcproj.vo;
- import lombok.Data;
- @Data
- public class JxEcharTotal {
- /*
- 城市adCode前4位
- */
- private String cityCode;
- /*
- 城市名称
- */
- private String adName;
- /*
- 督查对象总数
- */
- private int total1;
- /*
- 交已填问题对象数量
- */
- private int total2;
- /*
- 表完成督查对象数量
- */
- private int total3;
- }
|