Files
fe_service_ebtp_frontend/src/pages/System/SupplierUser/data.d.ts

30 lines
562 B
TypeScript
Raw Normal View History

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;
}