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