支付回调

This commit is contained in:
luying
2021-11-09 19:24:00 +08:00
parent 173481a60c
commit 106493b878
26 changed files with 424 additions and 135 deletions

View File

@@ -448,3 +448,17 @@ export const STATUS = {
CHANNEL_INFO_NOT_FOUND: { code: 70014, simStr: '未找到玩家渠道数据' },
}
export const PAY_37_CALLBACK_CODE = {
SUCCESS: { code: 1, simStr: '发货成功' },
FAIL: { code: -1, simStr: '发货失败' },
USER_NOT_FOUND: { code: -2, simStr: '用户不存在' },
IP_LIMIT: { code: -3, simStr: 'IP限制' },
MD5_ERR: { code: -4, simStr: 'md5校验错误' },
ROLE_NOT_FOUND: { code: -5, simStr: '角色不存在' },
TIME_IS_EXPIRED: { code: -6, simStr: 'time时间已过期' },
SERVER_IS_BUSY: { code: -7, simStr: '游戏服务器繁忙' },
WRONG_PARAM: { code: -8, simStr: '参数错误' },
SERVER_NOT_FOUND: { code: -9, simStr: '游戏服不存在' },
PAY_ERR: { code: 10, simStr: '充值失败' }
}