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