feat:商户管理

This commit is contained in:
2025-12-29 16:40:27 +08:00
parent 57f4c2d394
commit dd91c1010a
62 changed files with 10536 additions and 165 deletions

View File

@@ -33,5 +33,40 @@ public enum MerchantAuditAction
/// <summary>
/// 商户审核结果。
/// </summary>
MerchantReviewed = 5
MerchantReviewed = 5,
/// <summary>
/// 领取审核。
/// </summary>
ReviewClaimed = 6,
/// <summary>
/// 释放审核。
/// </summary>
ReviewReleased = 7,
/// <summary>
/// 审核通过。
/// </summary>
ReviewApproved = 8,
/// <summary>
/// 审核驳回。
/// </summary>
ReviewRejected = 9,
/// <summary>
/// 撤销审核。
/// </summary>
ReviewRevoked = 10,
/// <summary>
/// 关键信息变更进入待审核。
/// </summary>
ReviewPendingReApproval = 11,
/// <summary>
/// 强制接管审核。
/// </summary>
ReviewForceClaimed = 12
}