mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.panzhihua.common.model.vos.community;
 
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel
public class GrantIntegral
{
    @ApiModelProperty("活动id")
    private String activityId;
 
    @ApiModelProperty("社区id")
    private String communityId;
 
    @ApiModelProperty("主键id")
    private String id;
 
    @ApiModelProperty("志愿者id")
    private String volunteerId;
 
    @ApiModelProperty("用户id")
    private String userId;
 
    @ApiModelProperty("发放积分")
    private String grantIntegral="0";
 
    @ApiModelProperty("活动id")
    private List<GrantIntegral> peopleAndGranList;
 
}