import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel'; export type AccountParams = BasicPageParams & { account?: string; nickname?: string; }; export type DeptParams = { deptName?: string; status?: string; }; export interface AccountListItem { id: string; account: string; email: string; nickname: string; role: number; createTime: string; remark: string; status: number; } export interface DeptListItem { id: string; orderNo: string; createTime: string; remark: string; status: number; } /** * @description: Request list return value */ export type AccountListGetResultModel = BasicFetchResult<AccountListItem>; export type DeptListGetResultModel = BasicFetchResult<DeptListItem>;