患者体检项目表新增 体检单元名称

This commit is contained in:
lxd 2025-03-04 09:50:18 +08:00
parent d4003eaafd
commit 1e32f4ebb9
4 changed files with 13 additions and 2 deletions

View File

@ -78,4 +78,7 @@ public class InspectPatientitemsPageReqVO extends PageParam {
@Schema(description = "饭前或者饭后标识 内容: 饭前 饭后")
private String mealfrontorafter;
@Schema(description = "体检单元名称")
private String moduleName;
}

View File

@ -94,5 +94,6 @@ public class InspectPatientitemsRespVO {
@Schema(description = "饭前或者饭后标识 内容: 饭前 饭后")
private String mealfrontorafter;
@Schema(description = "体检单元名称")
private String moduleName;
}

View File

@ -80,4 +80,7 @@ public class InspectPatientitemsSaveReqVO {
@Schema(description = "饭前或者饭后标识 内容: 饭前 饭后")
private String mealfrontorafter;
@Schema(description = "体检单元名称")
private String moduleName;
}

View File

@ -135,5 +135,9 @@ public class InspectPatientitemsDO {
@TableField("mealfrontorafter")
private String mealfrontorafter;
/*
* 体检单元名称
* */
@TableField("moduleName")
private String moduleName;
}