feat: add real name column while kyc
This commit is contained in:
@@ -27,6 +27,9 @@ public class UKyc extends BaseData {
|
||||
@Schema(description = "User ID")
|
||||
private Long userId;
|
||||
|
||||
@Schema(description = "Real Name")
|
||||
private Long realName;
|
||||
|
||||
@Schema(description = "Birth Date")
|
||||
private String birthDate;
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import lombok.Data;
|
||||
@Data
|
||||
public class UKycUserBo {
|
||||
private Long userId;
|
||||
private String userName;
|
||||
private String realName;
|
||||
private Integer status;
|
||||
private String createTimeStart;
|
||||
private String createTimeEnd;
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.wfc.system.domain.constant.KycStatusEnum;
|
||||
public class UKycUserVo {
|
||||
private Long kycId;
|
||||
private Long userId;
|
||||
private String userName;
|
||||
private String realName;
|
||||
private String birthDate;
|
||||
private IdTypeEnum idType;
|
||||
private String idFile;
|
||||
|
||||
@@ -14,7 +14,6 @@ import org.wfc.system.domain.bo.UKycUserBo;
|
||||
* 用户平台-KYC表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author sys
|
||||
* @since 2025-01-08
|
||||
*/
|
||||
@DS("user")
|
||||
|
||||
Reference in New Issue
Block a user