完善加项支付接口参数

This commit is contained in:
xianyi
2026-01-05 10:26:36 +08:00
parent f6cc55582e
commit 5baf9270c0
2 changed files with 57 additions and 24 deletions

View File

@@ -524,6 +524,8 @@ export interface PoPhysicalExamAddItem {
times?: number | null;
/** 组合项目代码 */
combination_item_code?: number | null;
/** 是否享受折扣1-是 0-否) */
is_enjoy_discount?: number | null;
}
/**
@@ -546,6 +548,8 @@ export interface OutputPhysicalExamAddItem {
times?: number | null;
/** 组合项目代码 */
combination_item_code?: number | null;
/** 是否享受折扣1-是 0-否) */
is_enjoy_discount?: number | null;
}
/**
@@ -635,6 +639,18 @@ export interface InputPhysicalExamAddOrder {
*/
export type PhysicalExamQrcodeCreateResponse = CommonActionResult<string>;
/**
* 加项组合项目支付信息
*/
export interface InputAddItemCombinationInfo {
/** 体检组合项目代码 */
combination_item_code: string;
/** 体检组合项目价格 */
combination_item_price: number;
/** 折扣比例 */
discount_rate: number;
}
/**
* 体检支付结果查询入参Native 查询支付是否成功)
*/
@@ -643,10 +659,8 @@ export interface InputOrderPaymentInfo {
physical_exam_id: number;
/** 患者ID */
patient_id: number;
/** 体检组合项目代码addItemList.combination_item_code 多个加项逗号分隔) */
combinationItemCodes: string;
/** 折扣比例 */
discount_rate: number;
/** 体检组合项目信息 */
listAddItemCombination?: InputAddItemCombinationInfo[] | null;
/** 支付方式12-微信 13-挂账公司) */
pay_type: number;
/** 挂账公司ID挂账公司传对应的ID其他传0 */