修改医生管理上传图片方法
Some checks are pending
Java CI with Maven / build (11) (push) Waiting to run
Java CI with Maven / build (17) (push) Waiting to run
Java CI with Maven / build (8) (push) Waiting to run
yudao-ui-admin CI / build (14.x) (push) Waiting to run
yudao-ui-admin CI / build (16.x) (push) Waiting to run

This commit is contained in:
lxd 2024-12-11 10:25:57 +08:00
parent ea865b9f3d
commit 69a9aba40b
2 changed files with 6 additions and 1 deletions

View File

@ -131,6 +131,11 @@ public class DoctorController {
public CommonResult<Boolean> handleFileUpload(@Valid @RequestBody uoloadVO uoloadVO) {
String id=uoloadVO.getDoctorID();
DoctorSaveReqVO up=new DoctorSaveReqVO();
up.setDoctorID(id);
up.setIsdelete("0");
up.setESignatureUrl(uoloadVO.getBase());
Service.update(up);
return success(true);
}

View File

@ -506,7 +506,7 @@ public class PatientexamlistController {
AdminUserDO user = userService.getUser(getLoginUserId());
PatientexamlistSaveReqVO updateReqVO = new PatientexamlistSaveReqVO();
updateReqVO.setId(insimagescreenshotVO.getID());
updateReqVO.setPdfurl("https://pacs.gw12320.com/video/" + insimagescreenshotVO.getID() + "/" + fileName);
updateReqVO.setPdfurl("https://114.55.171.231:48082/" + insimagescreenshotVO.getID() + "/" + fileName);//https://pacs.gw12320.com/video
patientexamlistService.updatePatientexamlist(updateReqVO);