From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期二, 20 五月 2025 23:48:08 +0800
Subject: [PATCH] 修改文件上传类型限制

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/easyPhoto/ComActEasyPhotoStatisticsVO.java |   49 ++++++++++++++++++++++++++++++++++++++++++-------
 1 files changed, 42 insertions(+), 7 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 29447fa..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,5 +1,7 @@
 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;
@@ -8,15 +10,48 @@
 @ApiModel("随手拍列表统计返回参数")
 public class ComActEasyPhotoStatisticsVO {
 
-    @ApiModelProperty("待审核数量")
-    private Integer examineNum;
+    @ApiModelProperty("待处理数量")
+    private Integer examineNum = 0;
 
-    @ApiModelProperty("待验证数量")
-    private Integer verificationNum;
+    @ApiModelProperty("进行中数量")
+    private Integer verificationNum = 0;
 
-    @ApiModelProperty("已驳回数量")
-    private Integer rejectNum;
+    @ApiModelProperty("已公示数量")
+    private Integer rejectNum = 0;
 
     @ApiModelProperty("已完成数量")
-    private Integer completeNum;
+    private Integer completeNum = 0;
+
+    @ApiModelProperty("优质数量")
+    private Integer yzAllTotal = 0;
+
+    @ApiModelProperty("今日优质数量")
+    private Integer yzDayTotal = 0;
+
+    @ApiModelProperty("精良数量")
+    private Integer jlAllTotal = 0;
+
+    @ApiModelProperty("今日精良数量")
+    private Integer jlDayTotal = 0;
+
+    @ApiModelProperty("普通数量")
+    private Integer ptAllTotal = 0;
+
+    @ApiModelProperty("今日普通数量")
+    private Integer ptDayTotal = 0;
+
+    @ApiModelProperty("一般数量")
+    private Integer ybAllTotal = 0;
+
+    @ApiModelProperty("今日一般数量")
+    private Integer ybDayTotal = 0;
+
+    @ApiModelProperty("奖励总数量")
+    private BigDecimal allRewardAmount = BigDecimal.ZERO;
+
+    @ApiModelProperty("今日奖励数量")
+    private BigDecimal dayRewardAmount = BigDecimal.ZERO;
+
+    @ApiModelProperty("待评价数量")
+    private Integer commitAmount;
 }

--
Gitblit v1.7.1