增加中西详情字段

This commit is contained in:
Euni4U 2025-03-20 12:38:29 +08:00
parent 9500c28d0b
commit f25fbed7b9
6 changed files with 37 additions and 0 deletions

View File

@ -52,4 +52,11 @@ public class InspectPatientInfoVO {
@Schema(description = "生化全项")
private String shqx;
@Schema(description = "中医体质辨识结果")
private String zybs;
@Schema(description = "中医详情")
private String features;
}

View File

@ -110,4 +110,11 @@ public class InspectPatientPageReqVO extends PageParam {
@Schema(description = "生化全项")
private String shqx;
@Schema(description = "中医体质辨识结果")
private String zybs;
@Schema(description = "中医详情")
private String features;
}

View File

@ -52,6 +52,10 @@ public class InspectPatientReportVO {
@Schema(description = "中医体质辨识结果")
private String zybs;
@Schema(description = "中医详情")
private String features;
@Schema(description = "检查数据列表")
private List<InspectPatientReportDataVO> data;

View File

@ -129,4 +129,10 @@ public class InspectPatientRespVO {
@Schema(description = "生化全项")
private String shqx;
@Schema(description = "中医体质辨识结果")
private String zybs;
@Schema(description = "中医详情")
private String features;
}

View File

@ -103,4 +103,11 @@ public class InspectPatientSaveReqVO {
@Schema(description = "生化全项")
private String shqx;
@Schema(description = "中医体质辨识结果")
private String zybs;
@Schema(description = "中医详情")
private String features;
}

View File

@ -181,4 +181,10 @@ public class InspectPatientDO {
*/
@TableField("zybs")
private String zybs;
/**
* 中医详情
*/
@Schema(description = "features")
private String features;
}