添加保存操作员备注信息接口

This commit is contained in:
xianyi
2025-12-16 10:56:35 +08:00
parent cf0312680d
commit 1567f19561
2 changed files with 38 additions and 0 deletions

View File

@@ -30,6 +30,8 @@ import type {
TijianDiningLogResponse,
InputOperatorRemarkInfo,
OperatorRemarkInfoResponse,
InputOperatorRemarkInfoAdd,
OperatorRemarkInfoAddResponse,
} from './types';
/**
@@ -248,3 +250,15 @@ export const getOperatorRemarkInfo = (
).then(res => res.data);
};
/**
* 保存操作员备注信息
*/
export const saveOperatorRemarkInfo = (
data: InputOperatorRemarkInfoAdd
): Promise<OperatorRemarkInfoAddResponse> => {
return request.post<OperatorRemarkInfoAddResponse>(
`${MEDICAL_EXAM_BASE_PATH}/remark-save`,
data
).then(res => res.data);
};