增加体检项目饭前饭后标识

This commit is contained in:
lxd 2025-02-28 17:13:50 +08:00
parent 5d7796b52e
commit 98c71d2a5c
8 changed files with 26 additions and 2 deletions

View File

@ -67,4 +67,6 @@ public class InspectitemsPageReqVO extends PageParam {
@Schema(description = "模块ID")
private String groupcode;
@Schema(description = "饭前或者饭后标识 内容: 饭前 饭后")
private String mealfrontorafter;
}

View File

@ -80,5 +80,6 @@ public class InspectitemsRespVO {
@Schema(description = "模块ID")
private String groupcode;
@Schema(description = "饭前或者饭后标识 内容: 饭前 饭后")
private String mealfrontorafter;
}

View File

@ -63,4 +63,6 @@ public class InspectitemsSaveReqVO {
@Schema(description = "模块ID")
private String groupcode;
@Schema(description = "饭前或者饭后标识 内容: 饭前 饭后")
private String mealfrontorafter;
}

View File

@ -76,4 +76,6 @@ public class InspectPatientitemsPageReqVO extends PageParam {
@Schema(description = "模块ID")
private String groupcode;
@Schema(description = "饭前或者饭后标识 内容: 饭前 饭后")
private String mealfrontorafter;
}

View File

@ -79,6 +79,7 @@ public class InspectPatientitemsRespVO {
private String analyse;
@Schema(description = "检查医生")
@ExcelProperty("检查医生")
private String inspectdoctor;
@Schema(description = "检查时间")
@ -90,4 +91,8 @@ public class InspectPatientitemsRespVO {
@Schema(description = "模块ID")
private String groupcode;
@Schema(description = "饭前或者饭后标识 内容: 饭前 饭后")
private String mealfrontorafter;
}

View File

@ -78,5 +78,6 @@ public class InspectPatientitemsSaveReqVO {
@Schema(description = "模块ID")
private String groupcode;
@Schema(description = "饭前或者饭后标识 内容: 饭前 饭后")
private String mealfrontorafter;
}

View File

@ -107,4 +107,10 @@ public class InspectitemsDO {
@TableField("groupcode")
private String groupcode;
/*
* 饭前或者饭后标识 内容 饭前 饭后
* */
@TableField("mealfrontorafter")
private String mealfrontorafter;
}

View File

@ -129,4 +129,9 @@ public class InspectPatientitemsDO {
@TableField("groupcode")
private String groupcode;
/*
* 饭前或者饭后标识 内容 饭前 饭后
* */
@TableField("mealfrontorafter")
private String mealfrontorafter;
}