初始化

This commit is contained in:
chenyc
2025-12-13 18:52:08 +08:00
commit 9041a4298f
553 changed files with 59783 additions and 0 deletions

18
src/api/AI/index.ts Normal file
View File

@@ -0,0 +1,18 @@
import request from '/@/utils/request';
/**
* 自动ai生产阶段小结处理意见
* @param recordCode
* transferMode 0:普通输出 1:sse流式输出
* @returns
*/
export function getAIResultForGetMedSummary(fromData) {
return request({
url: '/patient/hemo/med/record/getAIResultForGetMedSummary',
method: 'post',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
params:fromData
})
}