(37需求): 查询角色接口

This commit is contained in:
luying
2023-05-06 21:08:59 +08:00
parent d30abf287f
commit 4fe472b537
5 changed files with 84 additions and 3 deletions

View File

@@ -561,4 +561,26 @@ export class GetServerParam {
checkParams() {
return this.server_id != undefined && this.time != undefined && this.sign != undefined
}
}
export class GetServerAndUidParam {
time: number;
appid: string;
gid: string;
uid: number;
dsid: number;
sign: string;
constructor(data: any) {
this.time = data.time;
this.appid = data.appid;
this.gid = data.gid;
this.uid = data.uid;
this.dsid = data.dsid;
this.sign = data.sign;
}
checkParams() {
return this.appid != undefined && this.time != undefined && this.gid != undefined && this.uid != undefined && this.dsid != undefined && this.sign != undefined
}
}