37 lines
791 B
TypeScript
37 lines
791 B
TypeScript
import { GM_MAIL_STATUS, GM_MAIL_TYPE } from "@consts";
|
|
|
|
export interface SearchUserParam {
|
|
uid?: number;
|
|
tel?: string;
|
|
channelType?: string;
|
|
}
|
|
|
|
export interface SearchRoleParam {
|
|
uid?: number; // 玩家id
|
|
roleId?: string; // 角色id
|
|
roleName?: string; // 昵称
|
|
}
|
|
|
|
export interface SearchHeroParam {
|
|
roleId?: string;
|
|
roleName?: string;
|
|
hid?: number;
|
|
}
|
|
|
|
export interface SearchEquipParam {
|
|
roleId?: string;
|
|
roleName?: string;
|
|
id?: number;
|
|
}
|
|
|
|
export interface SearchMailParam {
|
|
createTimeStart?: number;
|
|
createTimeEnd?: number;
|
|
serverId?: number;
|
|
roleId?: string;
|
|
roleName?: string;
|
|
title?: string;
|
|
status?: GM_MAIL_STATUS;
|
|
mailType?: GM_MAIL_TYPE;
|
|
hasGoods?: boolean;
|
|
} |