添加体检用餐登记列表接口
This commit is contained in:
@@ -24,6 +24,8 @@ import type {
|
||||
CustomerDetailEditResponse,
|
||||
InputPhysicalExamAddItem,
|
||||
PhysicalExamAddItemListResponse,
|
||||
InputPhysicalExamDiningLog,
|
||||
PhysicalExamDiningLogResponse,
|
||||
} from './types';
|
||||
|
||||
/**
|
||||
@@ -206,3 +208,15 @@ export const submitDaojiandanSign = (
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* 体检用餐登记列表
|
||||
*/
|
||||
export const getPhysicalExamDiningList = (
|
||||
data: InputPhysicalExamDiningLog
|
||||
): Promise<PhysicalExamDiningLogResponse> => {
|
||||
return request.post<PhysicalExamDiningLogResponse>(
|
||||
`${MEDICAL_EXAM_BASE_PATH}/dining-list`,
|
||||
data
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user