修复项目名称显示问题

This commit is contained in:
xianyi
2026-01-12 10:44:13 +08:00
parent c2e0f0f382
commit 9e341eb4eb
3 changed files with 30 additions and 3 deletions

View File

@@ -223,6 +223,19 @@ export interface OutputPhysicalExamProgressDetail {
*/
export type PhysicalExamProgressDetailResponse = CommonActionResult<OutputPhysicalExamProgressDetail>;
/**
* 体检进度入参
*/
export interface InputPhysicalExamProgress {
/** 体检ID */
physical_exam_id: number;
}
/**
* 体检进度接口返回
*/
export type PhysicalExamProgressResponse = CommonActionResult<PhysicalExamProgressItem[]>;
/**
* 客户详情入参
*/