22 lines
506 B
Go
22 lines
506 B
Go
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: "打款成功",
|
|
}
|
|
}
|