You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
637 B
39 lines
637 B
// 引入基础包 |
|
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<InstitutionItem>; |