This commit is contained in:
2025-02-06 11:14:33 +08:00
commit 07847a2d9e
535 changed files with 65131 additions and 0 deletions

View File

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