完善加项支付接口参数
This commit is contained in:
@@ -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) */
|
||||
|
||||
Reference in New Issue
Block a user