新增供应商账号管理功能,包括供应商用户列表、用户信息更新和密码重置功能。
This commit is contained in:
30
src/pages/System/SupplierUser/data.d.ts
vendored
Normal file
30
src/pages/System/SupplierUser/data.d.ts
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user