添加搜索体检加项接口

This commit is contained in:
xianyi
2025-12-15 14:04:22 +08:00
parent 91a12b848e
commit 5e412d4c54
2 changed files with 45 additions and 0 deletions

View File

@@ -358,3 +358,34 @@ export interface OutputCustomerDetailEdit {
*/
export type CustomerDetailEditResponse = CommonActionResult<OutputCustomerDetailEdit>;
/**
* 体检加项列表信息入参
*/
export interface InputPhysicalExamAddItem {
/** 项目名称(必填,空字符串表示获取全部) */
item_name: string;
}
/**
* 体检加项列表信息出参
*/
export interface OutputPhysicalExamAddItem {
/** 项目ID */
item_id?: number | null;
/** 项目名称 */
item_name?: string | null;
/** 实收金额 */
actual_received_amount?: number | null;
/** 原价 */
original_price?: number | null;
/** 折扣率含折扣单位如8.0折) */
discount_rate?: string | null;
/** 次数 */
times?: number | null;
}
/**
* 体检加项列表信息响应
*/
export type PhysicalExamAddItemListResponse = CommonActionResult<OutputPhysicalExamAddItem[]>;