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.
28 lines
699 B
28 lines
699 B
import type { R } from '/#/axios'; |
|
import type { Page } from '/@/api/common/data/entity'; |
|
import { CommonEntity } from '/@/api/common/data/entity'; |
|
|
|
/** 医院查询参数 */ |
|
export type HospitalParams = Hospital & Page; |
|
|
|
/** 医院对象 */ |
|
export interface Hospital extends CommonEntity { |
|
id: string; |
|
name: string; |
|
type: string; |
|
contactName: string; |
|
contactPhone: string; |
|
contactTitle: string; |
|
payment: string; |
|
addressIds: string; |
|
detailAddress: string; |
|
status: string; |
|
mapOrientation: number; |
|
mapLng: number; |
|
mapLat: number; |
|
mapNotify: string; |
|
orgIds: string[]; |
|
} |
|
|
|
/** 医院响应对象 */ |
|
export type HospitalResult = R<Hospital[]>;
|
|
|