tb_patientitems添加analyse字段 tb_patient添加auditStatus、inspectionOpinion

This commit is contained in:
张佳炜 2025-02-17 16:01:06 +08:00
parent b5ad59b368
commit 2021485207
3 changed files with 3 additions and 3 deletions

View File

@ -83,6 +83,6 @@ public class InspectPatientPageReqVO extends PageParam {
private Integer auditStatus;
@Schema(description = "总检意见")
private Integer inspectionOpinion;
private String inspectionOpinion;
}

View File

@ -104,6 +104,6 @@ public class InspectPatientRespVO {
@Schema(description = "总检意见")
@ExcelProperty("总检意见")
private Integer inspectionOpinion;
private String inspectionOpinion;
}

View File

@ -79,6 +79,6 @@ public class InspectPatientSaveReqVO {
private Integer auditStatus;
@Schema(description = "总检意见")
private Integer inspectionOpinion;
private String inspectionOpinion;
}