sdk:根据玩家获取军团信息

This commit is contained in:
luying
2021-11-11 11:13:45 +08:00
parent 16119ac7a8
commit bbb2903f12
8 changed files with 209 additions and 26 deletions

View File

@@ -464,4 +464,14 @@ export const PAY_37_CALLBACK_CODE = {
WRONG_PARAM: { code: -8, simStr: '参数错误' },
SERVER_NOT_FOUND: { code: -9, simStr: '游戏服不存在' },
PAY_ERR: { code: 10, simStr: '充值失败' }
}
export const SDK_37_TREAT_CODE = {
SUCCESS: { code: 1, simStr: '成功' },
WRONG_PARAMS: { code: -1, simStr: '参数错误' },
SIGN_ERR: { code: -2, simStr: '签名错误' },
TIME_IS_EXPIRED: { code: -3, simStr: 'time时间已过期' },
ERR: { code: -4, simStr: '其他错误' },
USER_NOT_FOUND: { code: -5, simStr: '用户不存在' },
ROLE_NOT_FOUND: { code: -6, simStr: '角色不存在' },
}