添加接口

This commit is contained in:
xianyi
2026-01-26 09:56:16 +08:00
parent fccb014054
commit 70e42cf33b
3 changed files with 125 additions and 4 deletions

View File

@@ -542,8 +542,10 @@ export type CustomerDetailEditResponse = CommonActionResult<OutputCustomerDetail
export interface InputPhysicalExamAddItem {
/** 体检ID */
physical_exam_id: number;
/** 折扣率 */
discount_ratio: number;
/** 渠道ID */
scrm_account_id?: string | null;
/** 渠道名称 */
scrm_account_name?: string | null;
/** 项目名称(默认空值,传入项目名称过滤数据) */
item_name?: string;
}
@@ -1383,3 +1385,79 @@ export interface OutputSelfServiceTaipingInfo {
* 获取太平VIP客户认证结果响应
*/
export type IsTaipingVipResponse = CommonActionResult<OutputSelfServiceTaipingInfo>;
/**
* 体检加项自定义结算申请状态编辑入参
*/
export interface InputCustomSettlementApplyApprove {
/** 体检ID */
physical_exam_id?: number;
/** 体检加项组合ID多个逗号分隔例如123,456 */
add_item_id?: string;
}
/**
* 体检加项自定义结算申请状态编辑出参
*/
export interface OutputCustomSettlementApplyApprove {
/** 是否成功1-成功 0-失败) */
is_success?: number;
/** 申请状态1-审核中 2-取消申请 3-审核通过 4-审核不通过) */
apply_status?: number;
/** 申请状态名称 */
apply_status_name?: string | null;
/** 最终结算金额 */
final_settlement_price?: number | null;
}
/**
* 获取体检加项自定义结算申请审批状态响应
*/
export type CustomSettlementApproveStatusGetResponse = CommonActionResult<OutputCustomSettlementApplyApprove>;
/**
* 加项项目明细信息
*/
export interface InputAddItemCustomSettlementDetail {
/** 加项项目代码 */
combination_item_code: string;
/** 加项项目名称 */
combination_item_name: string;
/** 原价金额 */
original_price: number;
/** 结算金额 */
settlement_price: number;
}
/**
* 体检加项自定义结算申请入参
*/
export interface InputCustomSettlementApply {
/** 体检ID */
physical_exam_id?: number;
/** 加项项目明细信息列表 */
listAddItemDetail?: InputAddItemCustomSettlementDetail[];
/** 原结算价 */
original_settlement_price?: number;
/** 结算方式1-按比例折扣 2-自定义结算价) */
settlement_type?: number;
/** 折扣比例(如'85'代表8.5折) */
discount_ratio?: number;
/** 最终结算价 */
final_settlement_price?: number;
/** 申请理由 */
apply_reason?: string;
}
/**
* 体检加项自定义结算申请出参
*/
export interface OutputCustomSettlementApply {
/** 申请唯一编码 */
guid?: string | null;
}
/**
* 体检加项自定义结算申请响应
*/
export type CustomSettlementApplyResponse = CommonActionResult<OutputCustomSettlementApply>;