huangyinfeng
2024-09-04 1288098cf6d7cb37547448c4d072287c40e0e6d1
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
 
 
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: string;
  cc: string;
  bcc: string;
  subject: string;
  content: string;
  fileUNID: string;
  docCode: string;
  
}
 
 
export type GetUserListModel = BasicFetchResult<GetUserListItem>;