// 引入基础包 import type { R } from '/#/axios'; import type { CommonEntity,Page } from '/@/api/common/data/entity'; export type InstitutionParams = { name?: string; beginTime?: string; endTime?: string; } & Page; export interface InstitutionItem extends CommonEntity{ id: string; name: string; type: string; contactsName: string; contactsTel: string; contactsTitle: string; addressId: string; detailAddress: string; status: string; createById: string; createByName: string; createTime: string; } export type InstitutionItemListResult = R;