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;
|
}
|