30 lines
562 B
TypeScript
30 lines
562 B
TypeScript
export interface SupplierUserListItem {
|
|
userId: string;
|
|
username: string;
|
|
name: string;
|
|
mobile: string;
|
|
supplierName: string;
|
|
creditCode: string;
|
|
status: number;
|
|
email?: string;
|
|
remark?: string;
|
|
}
|
|
|
|
export interface TableListPagination {
|
|
total: number;
|
|
pageSize: number;
|
|
current: number;
|
|
}
|
|
|
|
export interface TableListData {
|
|
list: SupplierUserListItem[];
|
|
pagination: Partial<TableListPagination>;
|
|
}
|
|
|
|
export interface TableListParams {
|
|
pageSize?: number;
|
|
current?: number;
|
|
keyword?: string;
|
|
status?: number;
|
|
sorter?: string;
|
|
}
|