|
@@ -11,16 +11,14 @@ import lombok.Data;
|
|
|
@Data
|
|
|
public class AdmGatherInfoPoint {
|
|
|
/** 信息点总数(数字字典+自定义信息点) */
|
|
|
- private Integer gatherInfoPointCounts;
|
|
|
- private Integer dynamicInfoPointCounts;
|
|
|
- private Integer staticInfoPointCounts;
|
|
|
+ private Integer gatherInfoPointCounts = 0;
|
|
|
|
|
|
/** 已采集的动态信息点总数 */
|
|
|
- private Integer gatherDynamicInfoPointCounts;
|
|
|
+ private Integer gatherDynamicInfoPointCounts = 0;
|
|
|
|
|
|
/** 已采集的静态信息点总数 */
|
|
|
- private Integer gatherStaticInfoPointCounts;
|
|
|
+ private Integer gatherStaticInfoPointCounts = 0;
|
|
|
|
|
|
/** 已采集的自定义信息点总数 */
|
|
|
- private Integer gatherCustomInfoPointCounts;
|
|
|
+ private Integer gatherCustomInfoPointCounts = 0;
|
|
|
}
|