From 86df207c37502cce1b2043e1c7c0486459eef1d6 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期四, 13 三月 2025 19:58:45 +0800 Subject: [PATCH] 党员、诉求评论基础代码 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/easyPhoto/ComActEasyPhotoStatisticsVO.java | 13 ++++++++----- 1 files changed, 8 insertions(+), 5 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 2efeaed..27736d8 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 @@ -1,22 +1,22 @@ package com.panzhihua.common.model.vos.community.easyPhoto; +import java.math.BigDecimal; + import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; - -import java.math.BigDecimal; @Data @ApiModel("随手拍列表统计返回参数") public class ComActEasyPhotoStatisticsVO { - @ApiModelProperty("待审核数量") + @ApiModelProperty("待处理数量") private Integer examineNum = 0; - @ApiModelProperty("待验证数量") + @ApiModelProperty("进行中数量") private Integer verificationNum = 0; - @ApiModelProperty("已驳回数量") + @ApiModelProperty("已公示数量") private Integer rejectNum = 0; @ApiModelProperty("已完成数量") @@ -51,4 +51,7 @@ @ApiModelProperty("今日奖励数量") private BigDecimal dayRewardAmount = BigDecimal.ZERO; + + @ApiModelProperty("待评价数量") + private Integer commitAmount; } -- Gitblit v1.7.1