package com.gear.swx.domain; import com.gear.common.annotation.Excel; import lombok.Data; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableId; import com.gear.common.core.domain.BusiBaseEntity; /** * 认证记录对象 swx_identification * * @author czx * @date 2023-11-25 */ @Data @TableName("swx_identification") public class SwxIdentification extends BusiBaseEntity { private static final long serialVersionUID=1L; /** $column.columnComment */ @TableId(type = IdType.ASSIGN_ID) private String id; /** $column.columnComment */ @Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()") private String userId; /** 姓氏 */ @Excel(name = "姓氏") private String surname; /** 名字 */ @Excel(name = "名字") private String name; /** 国家 */ @Excel(name = "国家") private String country; /** 性别 */ @Excel(name = "性别") private Integer sex; /** 地址 */ @Excel(name = "地址") private String address; /** 手机 */ @Excel(name = "手机") private String phone; /** 出生日期 */ @Excel(name = "出生日期") private String birthday; /** 证件类型 */ @Excel(name = "证件类型") private Integer idType; /** 证件号码 */ @Excel(name = "证件号码") private String idNumber; /** 证件正面照 */ @Excel(name = "证件正面照") private String frontImg; /** 证件反面照 */ @Excel(name = "证件反面照") private String reverseImg; /** 证件手持照 */ @Excel(name = "证件手持照") private String handImg; /** 审核状态 */ @Excel(name = "审核状态") private Integer status; }