From 74f6efd5469cef63379038c77f0f3b6a69954a2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=86=AF=E5=87=AF?= <371894675@qq.com> Date: Thu, 26 Oct 2023 13:58:56 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E6=8E=A5=E5=8F=A31.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- base-system-common/pom.xml | 2 +- .../main/java/com/health/system/common/domain/Doctor.java | 4 ++++ .../main/java/com/health/system/common/domain/Patient.java | 5 +++++ base-system-remote/pom.xml | 2 +- base-system-server/pom.xml | 2 +- 5 files changed, 12 insertions(+), 3 deletions(-) diff --git a/base-system-common/pom.xml b/base-system-common/pom.xml index ec1a269..27fb1bc 100644 --- a/base-system-common/pom.xml +++ b/base-system-common/pom.xml @@ -9,7 +9,7 @@ 3.6.3 - 3.6.7 + 3.6.8 base-system-common diff --git a/base-system-common/src/main/java/com/health/system/common/domain/Doctor.java b/base-system-common/src/main/java/com/health/system/common/domain/Doctor.java index 8e0bdc4..949788f 100644 --- a/base-system-common/src/main/java/com/health/system/common/domain/Doctor.java +++ b/base-system-common/src/main/java/com/health/system/common/domain/Doctor.java @@ -12,6 +12,10 @@ import lombok.Data; public class Doctor extends User{ /* + 医生id + */ + private Integer doctorId; + /* 就职医院名称 */ private String inauguralHospital; diff --git a/base-system-common/src/main/java/com/health/system/common/domain/Patient.java b/base-system-common/src/main/java/com/health/system/common/domain/Patient.java index b61267d..beedc15 100644 --- a/base-system-common/src/main/java/com/health/system/common/domain/Patient.java +++ b/base-system-common/src/main/java/com/health/system/common/domain/Patient.java @@ -10,6 +10,11 @@ import lombok.Data; */ @Data public class Patient extends User{ + + /* + 患者id + */ + private Integer patientId; /* 体重 */ diff --git a/base-system-remote/pom.xml b/base-system-remote/pom.xml index e619a92..4d6614d 100644 --- a/base-system-remote/pom.xml +++ b/base-system-remote/pom.xml @@ -35,7 +35,7 @@ com.health base-system-common - 3.6.7 + 3.6.8 diff --git a/base-system-server/pom.xml b/base-system-server/pom.xml index 6cf2309..1cd28ee 100644 --- a/base-system-server/pom.xml +++ b/base-system-server/pom.xml @@ -48,7 +48,7 @@ com.health base-system-common - 3.6.7 + 3.6.8