101captain
2021-09-29 9ea82b0a28a051113db6f2c43ffab6a9b59fa7b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.panzhihua.common.model.dtos.community.bigscreen;
 
import javax.validation.constraints.NotNull;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @ClasssName PageBigScreenStatisticPartyOrg
 * @Description 党员党支部统计信息分页
 * @Author cedoo
 * @Date 2021/6/16
 * @Version 1.0
 **/
@Data
public class BigScreenStatisticAgeGenderDTO {
 
    @ApiModelProperty(value = "社区id", hidden = false, example = "2", required = true)
    @NotNull(message = "社区id不能为空")
    private Long communityId;
 
}