| | |
| | | public class |
| | | PartyBuildingActivityVO { |
| | | @ApiModelProperty("党员id") |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("活动名称") |
| | | private String name; |
| | |
| | | @ApiModelProperty("每页记录数") |
| | | private Long pageSize; |
| | | |
| | | @ApiModelProperty("活动参入人数") |
| | | @ApiModelProperty("活动最多参入人数") |
| | | private Integer participationNum; |
| | | |
| | | @ApiModelProperty("活动最低参入人数-未达到到时间自动取消") |
| | | private Integer participationLowestNum; |
| | | |
| | | @ApiModelProperty("活动已经参与人数") |
| | | private Integer participationActualNum; |
| | | |
| | | @ApiModelProperty("活动封面") |
| | | private String cover; |
| | |
| | | private String createBy; |
| | | |
| | | @ApiModelProperty("社区id") |
| | | private Integer communityId; |
| | | private Long communityId; |
| | | |
| | | @ApiModelProperty("活动党员列表") |
| | | private List<PartyBuildingMemberVO> partyBuildingMemberVOS; |
| | | |
| | | @ApiModelProperty("是否已经报名") |
| | | private Boolean isSign; |
| | | private Integer isSign; |
| | | |
| | | |
| | | |