first commit
This commit is contained in:
21
pkg/constant/withdraw_status.go
Normal file
21
pkg/constant/withdraw_status.go
Normal file
@ -0,0 +1,21 @@
|
||||
package constant
|
||||
|
||||
const (
|
||||
WithdrawStatusReview = "1"
|
||||
WithdrawStatusApproved = "2"
|
||||
WithdrawStatusReject = "3"
|
||||
WithdrawStatusPayFailed = "4"
|
||||
WithdrawStatusPaySuccess = "5"
|
||||
)
|
||||
|
||||
var WithdrawStatusCon map[string]string
|
||||
|
||||
func init() {
|
||||
WithdrawStatusCon = map[string]string{
|
||||
WithdrawStatusReview: "审核中",
|
||||
WithdrawStatusApproved: "审核通过",
|
||||
WithdrawStatusReject: "审核失败",
|
||||
WithdrawStatusPayFailed: "打款失败",
|
||||
WithdrawStatusPaySuccess: "打款成功",
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user