实现商户注册、管理员审核商户申请接口
This commit is contained in:
20
internal/consts/merchant.go
Normal file
20
internal/consts/merchant.go
Normal file
@ -0,0 +1,20 @@
|
||||
package consts
|
||||
|
||||
// 商户状态
|
||||
const (
|
||||
MerchantNormalStatus = iota + 1
|
||||
MerchantDisabledStatus
|
||||
)
|
||||
|
||||
// 商户审核状态
|
||||
const (
|
||||
MerchantPendingReview = iota
|
||||
MerchantReviewPassed
|
||||
MerchantReviewRejected
|
||||
)
|
||||
|
||||
// 商户注册类型
|
||||
const (
|
||||
MerchantRegisterByAdmin = iota + 1
|
||||
MerchantRegisterBySelf
|
||||
)
|
||||
Reference in New Issue
Block a user