feat: tenant detail 返回实名与套餐详情

This commit is contained in:
2025-12-14 18:02:17 +08:00
parent 4b63c1913c
commit 91c9ed413b
4 changed files with 53 additions and 3 deletions

View File

@@ -46,6 +46,21 @@ public sealed class TenantVerificationDto
/// </summary>
public string? LegalPersonIdNumber { get; init; }
/// <summary>
/// 法人身份证正面。
/// </summary>
public string? LegalPersonIdFrontUrl { get; init; }
/// <summary>
/// 法人身份证反面。
/// </summary>
public string? LegalPersonIdBackUrl { get; init; }
/// <summary>
/// 开户名。
/// </summary>
public string? BankAccountName { get; init; }
/// <summary>
/// 银行账号。
/// </summary>
@@ -56,6 +71,22 @@ public sealed class TenantVerificationDto
/// </summary>
public string? BankName { get; init; }
/// <summary>
/// 附加资料JSON
/// </summary>
public string? AdditionalDataJson { get; init; }
/// <summary>
/// 提交时间。
/// </summary>
public DateTime? SubmittedAt { get; init; }
/// <summary>
/// 审核人 ID。
/// </summary>
[JsonConverter(typeof(NullableSnowflakeIdJsonConverter))]
public long? ReviewedBy { get; init; }
/// <summary>
/// 审核备注。
/// </summary>