merge
This commit is contained in:
parent
77bb52fe88
commit
a9f7be9f7b
|
@ -241,6 +241,15 @@ func isWithdrawFreeze(mid int64) bool {
|
|||
return WithdrawFreezeMidMap[mid]
|
||||
}
|
||||
|
||||
// 任意额度提现
|
||||
var WithdrawAnyDiasMap = map[int64]bool{
|
||||
74: true,
|
||||
}
|
||||
|
||||
func isWithdrawAnyDiasEnable(mid int64) bool {
|
||||
return WithdrawAnyDiasMap[mid]
|
||||
}
|
||||
|
||||
// 提现发送验证码
|
||||
func WithdrawSendVerifycode(ctx *gin.Context) {
|
||||
req := ctx.MustGet("client_req").(*vasproto.WithdrawSendVerifycodeReq)
|
||||
|
|
Loading…
Reference in New Issue