import type { PageParam, PageResult } from '@/http/types' import { http } from '@/http/http' /** 账户信息 */ export interface Account { id?: number name?: string } /** 获取账户精简列表 */ export function getAccountSimpleList() { return http.get('/erp/account/simple-list') }