| | |
| | | package com.panzhihua.common.model.dtos.community.bigscreen; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import javax.validation.constraints.Pattern; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @ClasssName PageBigScreenStatisticPartyOrg |
| | |
| | | public class BigScreenStatisticPartyActivityDTO { |
| | | |
| | | @ApiModelProperty(value = "社区id", hidden = true, example = "2", required = false) |
| | | //@NotNull(message = "社区id不能为空") |
| | | // @NotNull(message = "社区id不能为空") |
| | | private Long communityId; |
| | | |
| | | @ApiModelProperty(value = "类型:3 按月 2.按周;默认为3", hidden = false, example = "3", required = false) |
| | |
| | | private Integer type = 3; |
| | | |
| | | @ApiModelProperty(value = "日期", hidden = false, example = "2021-06-01", required = true) |
| | | // @NotNull(message = "时间不能为空") |
| | | // @NotNull(message = "时间不能为空") |
| | | @Pattern(regexp = "^\\d{4}-\\d{2}-\\d{2}$", message = "时间格式错误") |
| | | private String date; |
| | | |
| | |
| | | @ApiModelProperty(value = "结束时间", hidden = false, example = "2021-06-01") |
| | | @Pattern(regexp = "^\\d{4}-\\d{2}-\\d{2}$", message = "时间格式错误") |
| | | private String endTime; |
| | | |
| | | |
| | | } |