修改云心电保存打印服务新增P波时限字段
Some checks failed
Java CI with Maven / build (11) (push) Has been cancelled
Java CI with Maven / build (17) (push) Has been cancelled
Java CI with Maven / build (8) (push) Has been cancelled
yudao-ui-admin CI / build (14.x) (push) Has been cancelled
yudao-ui-admin CI / build (16.x) (push) Has been cancelled

This commit is contained in:
lxd 2024-12-27 10:01:59 +08:00
parent a2343acda3
commit e1ffe5e780
2 changed files with 2 additions and 0 deletions

View File

@ -117,6 +117,7 @@ public class EcganalysisparasController {
ecgPrintPdf.setRv5sv1plus(updateReqVO.getRv5Sv1());
ecgPrintPdf.setPt(updateReqVO.getPAxle()+"/"+updateReqVO.getTAxle()+"/"+updateReqVO.getQrsAxle());
ecgPrintPdf.setDepartment(updateReqVO.getDepartName());
ecgPrintPdf.setPtimelimit(updateReqVO.getPTimeLimit());
//查询医生的签名图片
DoctorDO doctorDO = Service.getBydoctorID(String.valueOf(updateReqVO.getDoctorId()));
if(!doctorDO.getESignatureUrl().isEmpty())

View File

@ -28,4 +28,5 @@ public class EcgPrintPdf {
private String type;
private String filepath;
private String orgname;
private String ptimelimit;
}