48 lines
827 B
TypeScript
48 lines
827 B
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 病例列表
|
|
*/
|
|
export interface Case {
|
|
//
|
|
id?: number;
|
|
//
|
|
userId?: number;
|
|
// 医生用户id
|
|
doctorUserId?: number;
|
|
// 病情主诉
|
|
patientCondition?: string;
|
|
// 既往史
|
|
pastHistory?: string;
|
|
// 过敏史
|
|
allergyHistory?: string;
|
|
// 诊断
|
|
diagnostic?: string;
|
|
// 治疗方案
|
|
plan?: string;
|
|
// 照片
|
|
photoList?: string;
|
|
// 0待审核 1通过 2拒绝
|
|
status?: number;
|
|
// 备注
|
|
comments?: string;
|
|
// 排序号
|
|
sortNumber?: number;
|
|
// 是否删除, 0否, 1是
|
|
deleted?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
// 创建时间
|
|
createTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 病例列表搜索条件
|
|
*/
|
|
export interface CaseParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
}
|