import { BasicFetchResult } from '@/api/model/baseModel'; export interface AccountListItem { id: string; name: string; type: any; code: any; objectId: string; objectType: string; formula: any; } /** * @description: Request list return value */ export interface AccountParams { id: string; key: string; page: any; limit: any; } export type AccountListGetResultModel = BasicFetchResult;