mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
package com.panzhihua.common.model.dtos.community;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 高领老人分页查询条件
 *
 * @author cedoo email:cedoo(a)qq.com
 * @version 1.0
 * @since 1.0
 */
@Data
@ApiModel("高领老人分页查询条件")
public class EldersAuthElderlyDTO {
 
    @ApiModelProperty(value = "id")
    private Long id;
 
    @ApiModelProperty(value = "姓名", example = "妞妞")
    private String name;
 
    @ApiModelProperty(value = "身份证号码")
    private String idCard;
 
    @ApiModelProperty(value = "是否健在(1是,2否)", example = "1是,2否")
    private Integer isExist;
 
    @ApiModelProperty(value = "是否办理高龄津贴(1是,2否)", example = "1是,2否")
    private Integer isBigAge;
}