Merge commit '7cfbc45e80094334c9da8fe00c4f5833d67082a7' into feature/backend

This commit is contained in:
luying
2021-12-08 10:25:33 +08:00
12 changed files with 1039 additions and 618 deletions
+3 -3
View File
@@ -228,7 +228,7 @@ export class RoleNameCallBackParam {
time: number; // 时间戳
sign: string;
constructor(param: RoleNameCallBackParam) {
constructor(param: any) {
this.username = param.username;
this.game_key = param.game_key;
this.sid = param.sid;
@@ -256,7 +256,7 @@ export class GuildNameCallBackParam {
time: number; // 时间戳
sign: string;
constructor(param: GuildNameCallBackParam) {
constructor(param: any) {
this.game_key = param.game_key;
this.sid = param.sid;
this.type = param.type;
@@ -282,7 +282,7 @@ export class GetGuildInfoByUserParam {
sid: number; // 区服id
sign: string;
constructor(param: GetGuildInfoByUserParam) {
constructor(param: any) {
this.game_key = param.game_key;
this.uid = param.uid;
this.time = param.time;