Files
exchange_go/common/const/enum/otc_merchantstatus/otc_merchantstatus.go
2025-02-06 11:14:33 +08:00

12 lines
331 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package otc_merchantstatus
// otc商家状态1 申请中3 不通过5 正常7 已禁用9 已解除认证
const (
Applying = 1 // 申请中
Fail = 3 // 不通过
Normal = 5 // 正常
Disabled = 7 // 已禁用
Revoked = 9 // 已解除认证
BondNoEnough = 11 // 保证金不足
)