添加获取操作员备注信息接口
This commit is contained in:
@@ -28,6 +28,8 @@ import type {
|
||||
PhysicalExamDiningLogResponse,
|
||||
InputTijianDiningLog,
|
||||
TijianDiningLogResponse,
|
||||
InputOperatorRemarkInfo,
|
||||
OperatorRemarkInfoResponse,
|
||||
} from './types';
|
||||
|
||||
/**
|
||||
@@ -234,3 +236,15 @@ export const registerPhysicalExamDining = (
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* 获取操作员备注信息
|
||||
*/
|
||||
export const getOperatorRemarkInfo = (
|
||||
data: InputOperatorRemarkInfo
|
||||
): Promise<OperatorRemarkInfoResponse> => {
|
||||
return request.post<OperatorRemarkInfoResponse>(
|
||||
`${MEDICAL_EXAM_BASE_PATH}/remark-get`,
|
||||
data
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
|
||||
@@ -485,3 +485,24 @@ export interface OutputTijianDiningLog {
|
||||
*/
|
||||
export type TijianDiningLogResponse = CommonActionResult<OutputTijianDiningLog>;
|
||||
|
||||
/**
|
||||
* 获取操作员备注信息入参
|
||||
*/
|
||||
export interface InputOperatorRemarkInfo {
|
||||
/** 操作员ID */
|
||||
operator_id: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取操作员备注信息出参
|
||||
*/
|
||||
export interface OutputOperatorRemarkInfo {
|
||||
/** 备注内容 */
|
||||
remark_content?: string | null;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取操作员备注信息响应
|
||||
*/
|
||||
export type OperatorRemarkInfoResponse = CommonActionResult<OutputOperatorRemarkInfo>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user