1
luodangjia
2025-01-21 68ee18438e99995d2d108cccb36e75f77ea96d76
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
package com.ruoyi.system.api.model;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDate;
 
@Data
@Schema(description = "身份证信息")
public class IdCard {
    @Schema(description = "姓名")
    private String name;
 
    @Schema(description = "性别")
    private String sex;
 
    @Schema(description = "身份证号码")
    private String idNumber;
 
    @Schema(description = "出生日期")
    private LocalDate birthDate;
 
    @Schema(description = "民族")
    private String ethnicity;
 
    @Schema(description = "地址")
    private String address;
}