| | |
| | | |
| | | import javax.validation.constraints.Min; |
| | | import javax.validation.constraints.NotBlank; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | |
| | | |
| | | @ApiModelProperty("发起人名字") |
| | | private String sponsorName; |
| | | |
| | | @ApiModelProperty("发布人昵称") |
| | | private String userNickName; |
| | | |
| | | @ApiModelProperty("发生地址") |
| | | @NotBlank(groups = {AddGroup.class},message = "发生地址不能为空") |
| | |
| | | private Date examineAt; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createAt; |
| | | |
| | | @ApiModelProperty("社区id") |
| | |
| | | |
| | | @ApiModelProperty("点赞数量") |
| | | private Integer giveThumbsUpNum; |
| | | |
| | | @ApiModelProperty("评论数量") |
| | | private Integer commentNum; |
| | | |
| | | @ApiModelProperty("是否匿名发布 0 否 1 是") |
| | | @Min(value = 0,groups = {AddGroup.class},message = "是否匿名发布不能为空") |
| | |
| | | private Long logInUserId; |
| | | |
| | | @ApiModelProperty("反馈时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date feedbackAt; |
| | | |
| | | @ApiModelProperty("发起人手机号") |
| | | private String phone; |
| | | |
| | | @ApiModelProperty("拒绝原因") |
| | | private String rejectReason; |
| | | |
| | | @ApiModelProperty(value = "后台登录人员id",hidden = true) |
| | | private Long backUserId; |
| | | |
| | | @ApiModelProperty(value = "地址备注") |
| | | private String addrRemark; |
| | | |
| | | @ApiModelProperty(value = "是否上报社区处理(0.否 1.是)") |
| | | private Integer isReport; |
| | | |
| | | @ApiModelProperty(value = "是否公示(0.否 1.是)") |
| | | private Integer isPublicity; |
| | | |
| | | @ApiModelProperty(value = "处理状态(1.待处理 2.已处理)") |
| | | private Integer handleStatus; |
| | | |
| | | @ApiModelProperty(value = "发生地址经纬度信息,逗号分割(长的在前面,短的在后面)") |
| | | private String lngLat; |
| | | |
| | | @ApiModelProperty(value = "随手拍标签(1.优质 2.精良 3.普通)") |
| | | private Integer activityType; |
| | | |
| | | @ApiModelProperty(value = "参加活动奖励金额") |
| | | private BigDecimal activityAmount; |
| | | |
| | | @ApiModelProperty(value = "类型(1.心情类 2.治理类)") |
| | | private Integer easyType; |
| | | } |