后台:邮件查询

This commit is contained in:
luying
2021-11-29 20:33:36 +08:00
parent 7e46663868
commit c4e4e472d1
13 changed files with 236 additions and 44 deletions

View File

@@ -1,3 +1,5 @@
import { GM_MAIL_STATUS, GM_MAIL_TYPE } from "@consts";
export interface SearchUserParam {
uid?: number;
tel?: string;
@@ -20,4 +22,16 @@ 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;
}