From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期一, 09 六月 2025 11:54:00 +0800 Subject: [PATCH] 6.9新增登录失败冻结逻辑 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/integral/ComActIntegralUserVO.java | 30 ++++++++++++++++++++++++++---- 1 files changed, 26 insertions(+), 4 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/integral/ComActIntegralUserVO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/integral/ComActIntegralUserVO.java index 80384a1..3908e1a 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/integral/ComActIntegralUserVO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/integral/ComActIntegralUserVO.java @@ -1,13 +1,20 @@ package com.panzhihua.common.model.vos.community.integral; +import java.util.List; + import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; -import java.util.List; - +/** + * @title: ComActIntegralUserVO + * @projectName: + * @description: 小程序-积分统计返回参数 + * @author: hans + * @date: 2022/08/02 16:01 + */ @Data -@ApiModel("小程序-用户积分页面返回参数") +@ApiModel("小程序-积分统计返回参数") public class ComActIntegralUserVO { @ApiModelProperty("用户积分总额") @@ -16,6 +23,21 @@ @ApiModelProperty("用户绑定社区") private String communityName; - @ApiModelProperty("用户积分列表") + @ApiModelProperty("社区活动已获积分") + private Integer actAmount; + + @ApiModelProperty("居民积分总额") + private Integer residentAmount; + + @ApiModelProperty("志愿者积分总额") + private Integer volunteerAmount; + + @ApiModelProperty("党员积分总额") + private Integer partyMemberAmount; + + @ApiModelProperty("单位党员活动已获积分") + private Integer unitPartyMemberAmount; + + @ApiModelProperty("各社区已获积分统计") private List<ComActIntegralUserListVO> integralUserList; } -- Gitblit v1.7.1