Pu Zhibing
2025-03-17 7f302004e78ca5220a4f88a7fab843964a18739a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.panzhihua.sangeshenbian.warpper;
 
import com.panzhihua.sangeshenbian.model.query.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
/**
 * @author mitao
 * @date 2025/3/14
 */
@Data
@ApiModel("党员管理查询数据 ")
public class PartyMemberQuery extends BasePage {
    @ApiModelProperty(value = "姓名")
    private String name;
 
    @ApiModelProperty(value = "所在社区")
    private Long communityId;
 
    @ApiModelProperty(value = "服务对象")
    private String serviceTarget;
 
    @ApiModelProperty(value = "所在党组织")
    private String partyOrganization;
 
    @ApiModelProperty(value = "冻结状态 1:已冻结 0:正常中")
    private Integer freezeStatus;
 
    @ApiModelProperty(value = "审核状态 0:待审核 1:审核通过 党员管理列表传1,审核列表传0")
    @NotNull(message = "审核状态不能为空")
    private Integer auditStatus;
}