| | |
| | | package com.panzhihua.common.model.vos.community; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | |
| | | @ApiModelProperty("发布时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date publishAt; |
| | | |
| | | @ApiModelProperty("活动结束时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date endAt; |
| | |
| | | @ApiModelProperty("活动奖品集合") |
| | | private List<ComActActPrizeVO> comActActPrizeVOList; |
| | | |
| | | @ApiModelProperty(value = "社区id",hidden = true) |
| | | @ApiModelProperty(value = "社区id", hidden = true) |
| | | private Long communityId; |
| | | |
| | | @ApiModelProperty(value = "社区名称") |
| | | private String communityName; |
| | | |
| | | @ApiModelProperty(value = "当前页数",example="1") |
| | | @ApiModelProperty(value = "当前页数", example = "1") |
| | | private Long pageNum; |
| | | |
| | | @ApiModelProperty(value = "每页记录数",example="10") |
| | | @ApiModelProperty(value = "每页记录数", example = "10") |
| | | private Long pageSize; |
| | | |
| | | @ApiModelProperty(value = "取消原因") |
| | | private String cancelReason; |
| | | |
| | | @ApiModelProperty(value = "是否已经报名 1 已报名 0 未报名") |
| | | private Integer isSign; |
| | | private Integer isSign = 0; |
| | | |
| | | @ApiModelProperty(value = "是不是以志愿者身份报名的 1 是 0 不是") |
| | | private Integer isVolunteer; |
| | | private Integer isVolunteer = 0; |
| | | |
| | | @ApiModelProperty(value = "当前登录者id",hidden = true) |
| | | @ApiModelProperty(value = "当前登录者id", hidden = true) |
| | | private Integer userId; |
| | | |
| | | @ApiModelProperty("活动参加普通人员集合") |
| | | private List<ActivitySignVO>activitySignVOList; |
| | | private List<ActivitySignVO> activitySignVOList; |
| | | |
| | | @ApiModelProperty("活动参加志愿者人员集合") |
| | | private List<ActivitySignVO>activityVolunteerList; |
| | | private List<ActivitySignVO> activityVolunteerList; |
| | | |
| | | @ApiModelProperty("活动类型 1 支援者活动 2 普通社区活动 3 党建活动") |
| | | private Integer type; |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createAt; |
| | | |
| | | @ApiModelProperty(value = "是否是小程序访问 1 是 ",hidden = true) |
| | | @ApiModelProperty(value = "是否是小程序访问 1 是 ", hidden = true) |
| | | private Integer isApplets; |
| | | |
| | | @ApiModelProperty("活动积分") |
| | | private Integer integral; |
| | | |
| | | @ApiModelProperty(value = "是不是请求进行中 1 是",hidden = true) |
| | | @ApiModelProperty(value = "是不是请求进行中 1 是", hidden = true) |
| | | private Integer isIng; |
| | | |
| | | @ApiModelProperty("用户实际报名时间") |