军团:提取权限判断

This commit is contained in:
luying
2021-07-31 18:49:01 +08:00
parent 0b6ac18d45
commit 2cf9fafdbb
10 changed files with 197 additions and 185 deletions

View File

@@ -1,5 +1,7 @@
// 一些通用的interface定义
import { UserGuildType } from "../db/UserGuild";
export interface RewardInter {
id: number;
count: number;
@@ -70,4 +72,9 @@ export interface mailData {
status: number;
mailType: number;
sendName: string;
}
}
export interface guildInter {
myUserGuild: UserGuildType;
hisUserGuild: UserGuildType;
}