54 lines
883 B
TypeScript
54 lines
883 B
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 诊所列表
|
|
*/
|
|
export interface ClinicList {
|
|
//
|
|
id?: number;
|
|
// 名称
|
|
name?: string;
|
|
// 省份id
|
|
provinceId?: number;
|
|
// 城市id
|
|
cityId?: number;
|
|
// 区域id
|
|
regionId?: number;
|
|
// 管理员id
|
|
userId?: number;
|
|
// 详细地址
|
|
address?: string;
|
|
// 联系方式
|
|
contact?: string;
|
|
// logo
|
|
logo?: string;
|
|
// 资质
|
|
qualify?: string;
|
|
// 0待审核 1通过 2拒绝
|
|
status?: number;
|
|
// 备注
|
|
comments?: string;
|
|
// 排序号
|
|
sortNumber?: number;
|
|
// 是否删除, 0否, 1是
|
|
deleted?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
// 创建时间
|
|
createTime?: string;
|
|
//
|
|
lat?: string;
|
|
//
|
|
lng?: string;
|
|
}
|
|
|
|
/**
|
|
* 诊所列表搜索条件
|
|
*/
|
|
export interface ClinicListParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
}
|