21 lines
305 B
Go
21 lines
305 B
Go
package consts
|
|
|
|
// 商户状态
|
|
const (
|
|
MerchantNormalStatus = iota + 1
|
|
MerchantDisabledStatus
|
|
)
|
|
|
|
// 商户审核状态
|
|
const (
|
|
MerchantPendingReview = iota + 1
|
|
MerchantReviewPassed
|
|
MerchantReviewRejected
|
|
)
|
|
|
|
// 商户注册类型
|
|
const (
|
|
MerchantRegisterByAdmin = iota + 1
|
|
MerchantRegisterBySelf
|
|
)
|