This commit is contained in:
2025-12-29 10:45:01 +08:00
parent dc1af138e2
commit a6cd0c3d52
158 changed files with 22599 additions and 859 deletions

View File

@@ -0,0 +1,47 @@
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;
}