| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 志愿者人数上限 |
| | | */ |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private Integer volunteerMax; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 参与者人数上限 |
| | | */ |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private Integer participantMax; |
| | | |
| | | /** |
| | |
| | | */ |
| | | private Integer haveIntegralReward; |
| | | /** |
| | | * 积分奖励方式(1.按次奖励 2.记时奖励) |
| | | * 居民积分奖励方式(1.按次奖励 2.记时奖励) |
| | | */ |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private Integer rewardWay; |
| | | private Integer participantRewardWay; |
| | | |
| | | /** |
| | | * 奖励积分 |
| | | * 居民参与签到/打卡奖励积分 |
| | | */ |
| | | private Integer rewardIntegral; |
| | | private Integer participantRewardIntegral; |
| | | |
| | | /** |
| | | * 志愿者积分奖励方式(1.按次奖励 2.记时奖励) |
| | | */ |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private Integer volunteerRewardWay; |
| | | |
| | | /** |
| | | * 志愿者参与签到/打卡奖励积分 |
| | | */ |
| | | private Integer volunteerRewardIntegral; |
| | | |
| | | /** |
| | | * 党员积分奖励方式(1.按次奖励 2.记时奖励) |
| | | */ |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private Integer pbRewardWay; |
| | | |
| | | /** |
| | | * 党员参与签到/打卡奖励积分 |
| | | */ |
| | | private Integer pbRewardIntegral; |
| | | |
| | | /** |
| | | * 参与次数上限 |
| | | */ |
| | |
| | | private Long projectId; |
| | | |
| | | /** |
| | | * 1志愿者活动 2居民活动 3党员活动 4项目活动 |
| | | * 活动类型 1 社区活动 4项目活动 5服务活动 |
| | | */ |
| | | private Integer type; |
| | | |
| | |
| | | /** |
| | | * 党员参与者人数上限 |
| | | */ |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private Integer partyMemberMax; |
| | | /** |
| | | * 签退范围,默认0无限制 |
| | |
| | | private String phone; |
| | | |
| | | private Long checkUnitId; |
| | | |
| | | private Long topicId; |
| | | } |