添加接口
This commit is contained in:
@@ -74,6 +74,8 @@ import type {
|
||||
OptionalItemInfoListResponse,
|
||||
InputOptionalPackageRemove,
|
||||
OptionalPackageRemoveResponse,
|
||||
InputTijianOptionItemRecordList,
|
||||
TijianOptionItemRecordListResponse,
|
||||
} from './types';
|
||||
|
||||
/**
|
||||
@@ -577,3 +579,15 @@ export const removeOptionalPackage = (
|
||||
data
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* 获取体检客户可选项操作记录信息
|
||||
*/
|
||||
export const getExamOptionRecordList = (
|
||||
data: InputTijianOptionItemRecordList
|
||||
): Promise<TijianOptionItemRecordListResponse> => {
|
||||
return request.post<TijianOptionItemRecordListResponse>(
|
||||
`${MEDICAL_EXAM_BASE_PATH}/optional-record-list`,
|
||||
data
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
@@ -1329,3 +1329,34 @@ export interface OutputOptionalPackageRemove {
|
||||
* 移除弃选体检套餐选项响应
|
||||
*/
|
||||
export type OptionalPackageRemoveResponse = CommonActionResult<OutputOptionalPackageRemove>;
|
||||
|
||||
/**
|
||||
* 获取体检客户可选项操作记录信息入参
|
||||
*/
|
||||
export interface InputTijianOptionItemRecordList {
|
||||
/** 体检ID */
|
||||
exam_id?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 体检可选项记录列表出参
|
||||
*/
|
||||
export interface OutputTijianOptionItemRecordList {
|
||||
/** 体检ID */
|
||||
exam_id?: number;
|
||||
/** 组合代码 */
|
||||
combination_code?: string | null;
|
||||
/** 组合名称 */
|
||||
combination_name?: string | null;
|
||||
/** 套餐代码 */
|
||||
package_code?: string | null;
|
||||
/** 是否弃选 默认0(1-弃选 0-选中) */
|
||||
is_abandon?: number;
|
||||
/** 是否弃选名称 */
|
||||
is_abandon_name?: string | null;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取体检客户可选项操作记录信息响应
|
||||
*/
|
||||
export type TijianOptionItemRecordListResponse = CommonActionResult<OutputTijianOptionItemRecordList[]>;
|
||||
|
||||
Reference in New Issue
Block a user