From a1e30f41fa0ff29822f5665f3a4aecd659890fc0 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期日, 15 八月 2021 12:13:50 +0800 Subject: [PATCH] 修改bug --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/easyPhoto/ComActEasyPhotoStatisticsVO.java | 28 ++++++++++++++-------------- 1 files changed, 14 insertions(+), 14 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/easyPhoto/ComActEasyPhotoStatisticsVO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/easyPhoto/ComActEasyPhotoStatisticsVO.java index 9085a28..2efeaed 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/easyPhoto/ComActEasyPhotoStatisticsVO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/easyPhoto/ComActEasyPhotoStatisticsVO.java @@ -11,44 +11,44 @@ public class ComActEasyPhotoStatisticsVO { @ApiModelProperty("待审核数量") - private Integer examineNum; + private Integer examineNum = 0; @ApiModelProperty("待验证数量") - private Integer verificationNum; + private Integer verificationNum = 0; @ApiModelProperty("已驳回数量") - private Integer rejectNum; + private Integer rejectNum = 0; @ApiModelProperty("已完成数量") - private Integer completeNum; + private Integer completeNum = 0; @ApiModelProperty("优质数量") - private Integer yzAllTotal; + private Integer yzAllTotal = 0; @ApiModelProperty("今日优质数量") - private Integer yzDayTotal; + private Integer yzDayTotal = 0; @ApiModelProperty("精良数量") - private Integer jlAllTotal; + private Integer jlAllTotal = 0; @ApiModelProperty("今日精良数量") - private Integer jlDayTotal; + private Integer jlDayTotal = 0; @ApiModelProperty("普通数量") - private Integer ptAllTotal; + private Integer ptAllTotal = 0; @ApiModelProperty("今日普通数量") - private Integer ptDayTotal; + private Integer ptDayTotal = 0; @ApiModelProperty("一般数量") - private Integer ybAllTotal; + private Integer ybAllTotal = 0; @ApiModelProperty("今日一般数量") - private Integer ybDayTotal; + private Integer ybDayTotal = 0; @ApiModelProperty("奖励总数量") - private BigDecimal allRewardAmount; + private BigDecimal allRewardAmount = BigDecimal.ZERO; @ApiModelProperty("今日奖励数量") - private BigDecimal dayRewardAmount; + private BigDecimal dayRewardAmount = BigDecimal.ZERO; } -- Gitblit v1.7.1