更新加项接口参数

This commit is contained in:
xianyi
2026-01-07 15:08:39 +08:00
parent 128f6d28ab
commit 77273b28b9
2 changed files with 5 additions and 2 deletions

View File

@@ -515,10 +515,12 @@ export type CustomerDetailEditResponse = CommonActionResult<OutputCustomerDetail
* 体检加项列表信息入参(搜索体检加项)
*/
export interface InputPhysicalExamAddItem {
/** 体检ID */
physical_exam_id: number;
/** 折扣率 */
discount_ratio: number;
/** 项目名称(默认空值,传入项目名称过滤数据) */
item_name?: string | null;
item_name?: string;
}
/**