Sanakey
5 天以前 2af71bcf522c485ea005184c977986374a7dcc4a
提交 | 用户 | age
67287b 1 import { BasicPageParams, BasicFetchResult } from '@/api/model/baseModel';
128809 2 export type tableParams = Partial<BasicPageParams>;
H 3
67287b 4 export interface GetUserListItem {
128809 5   id: string;
H 6   name: string;
7   email: string;
8   phone: string;
9   avatar: number;
10   [key: string]: string | number;
11 }
12 export interface sendingMailModel {
13   sender: string;
ccfd07 14   receiver: Object;
H 15   cc: Object;
16   bcc: Object;
128809 17   subject: string;
H 18   content: string;
ccfd07 19   attachmentList: string;
128809 20   docCode: string;
H 21 }
22
67287b 23 export interface addAccountParams {
H 24   email: string;
25   password: string;
26   aliasEmail: string;
27   biSyncFlag: boolean;
28   proxyFlag: boolean;
29   receiveProtocol: string;
30   receiveSSL: boolean;
31   receivePort: string;
32   receiveHost: string;
33   smtpSSL: boolean;
34   smtpPort: string;
35   smtpHost: string;
36   invalid: string;
37 }
128809 38
67287b 39 export type GetUserListModel = BasicFetchResult<GetUserListItem>;