This commit is contained in:
lwl0608 2024-05-10 23:51:35 +08:00
parent 77bb52fe88
commit a9f7be9f7b
1 changed files with 9 additions and 0 deletions

View File

@ -241,6 +241,15 @@ func isWithdrawFreeze(mid int64) bool {
return WithdrawFreezeMidMap[mid] return WithdrawFreezeMidMap[mid]
} }
// 任意额度提现
var WithdrawAnyDiasMap = map[int64]bool{
74: true,
}
func isWithdrawAnyDiasEnable(mid int64) bool {
return WithdrawAnyDiasMap[mid]
}
// 提现发送验证码 // 提现发送验证码
func WithdrawSendVerifycode(ctx *gin.Context) { func WithdrawSendVerifycode(ctx *gin.Context) {
req := ctx.MustGet("client_req").(*vasproto.WithdrawSendVerifycodeReq) req := ctx.MustGet("client_req").(*vasproto.WithdrawSendVerifycodeReq)