添加保存操作员备注信息接口
This commit is contained in:
@@ -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);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user