From 1567f195617c500c60d2fc6b0243b9c512611626 Mon Sep 17 00:00:00 2001 From: xianyi Date: Tue, 16 Dec 2025 10:56:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BF=9D=E5=AD=98=E6=93=8D?= =?UTF-8?q?=E4=BD=9C=E5=91=98=E5=A4=87=E6=B3=A8=E4=BF=A1=E6=81=AF=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/his.ts | 14 ++++++++++++++ src/api/types.ts | 24 ++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/src/api/his.ts b/src/api/his.ts index 8af7b90..b24677f 100644 --- a/src/api/his.ts +++ b/src/api/his.ts @@ -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 => { + return request.post( + `${MEDICAL_EXAM_BASE_PATH}/remark-save`, + data + ).then(res => res.data); +}; + diff --git a/src/api/types.ts b/src/api/types.ts index 765f122..cded0c6 100644 --- a/src/api/types.ts +++ b/src/api/types.ts @@ -506,3 +506,27 @@ export interface OutputOperatorRemarkInfo { */ export type OperatorRemarkInfoResponse = CommonActionResult; +/** + * 保存操作员备注信息入参 + */ +export interface InputOperatorRemarkInfoAdd { + /** 操作员ID */ + operator_id: string; + /** 操作员姓名 */ + operator_name: string; + /** 备注内容 */ + remark_content: string; +} + +/** + * 保存操作员备注信息出参 + */ +export interface OutputOperatorRemarkInfoAdd { + // 空对象,无属性 +} + +/** + * 保存操作员备注信息响应 + */ +export type OperatorRemarkInfoAddResponse = CommonActionResult; +