增加汇总结果字段

This commit is contained in:
Euni4U 2025-03-18 13:06:42 +08:00
parent 667ef34dd2
commit eed8bf28ff
2 changed files with 4 additions and 0 deletions

View File

@ -535,6 +535,7 @@ public class InspectPatientController {
inspectPatientReportVO.setPhoneNum(patientDO.getPhoneNum());
inspectPatientReportVO.setHeadPicUrl(patientDO.getHeadPicUrl());
inspectPatientReportVO.setDomicileaddress(patientDO.getDomicileaddress());
inspectPatientReportVO.setSummaryResult(patientDO.getSummaryResult());
// 获取患者检查项目信息
List<InspectPatientitemsDO> patientItems = patientitemsService.getPatientItemsOfMedicalSn(medicalSn);

View File

@ -38,6 +38,9 @@ public class InspectPatientReportVO {
@Schema(description = "住址")
private String domicileaddress;
@Schema(description = "汇总分析结果")
private String summaryResult;
@Schema(description = "检查数据列表")
private List<InspectPatientReportDataVO> data;