增加 登录接口1.0
parent
30dd351159
commit
74f6efd546
|
@ -9,7 +9,7 @@
|
||||||
<version>3.6.3</version>
|
<version>3.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<!--重构登录注册模块后 重构系统公共实体类-->
|
<!--重构登录注册模块后 重构系统公共实体类-->
|
||||||
<version>3.6.7</version>
|
<version>3.6.8</version>
|
||||||
<artifactId>base-system-common</artifactId>
|
<artifactId>base-system-common</artifactId>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -12,6 +12,10 @@ import lombok.Data;
|
||||||
public class Doctor extends User{
|
public class Doctor extends User{
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
医生id
|
||||||
|
*/
|
||||||
|
private Integer doctorId;
|
||||||
|
/*
|
||||||
就职医院名称
|
就职医院名称
|
||||||
*/
|
*/
|
||||||
private String inauguralHospital;
|
private String inauguralHospital;
|
||||||
|
|
|
@ -10,6 +10,11 @@ import lombok.Data;
|
||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
public class Patient extends User{
|
public class Patient extends User{
|
||||||
|
|
||||||
|
/*
|
||||||
|
患者id
|
||||||
|
*/
|
||||||
|
private Integer patientId;
|
||||||
/*
|
/*
|
||||||
体重
|
体重
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.health</groupId>
|
<groupId>com.health</groupId>
|
||||||
<artifactId>base-system-common</artifactId>
|
<artifactId>base-system-common</artifactId>
|
||||||
<version>3.6.7</version>
|
<version>3.6.8</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.health</groupId>
|
<groupId>com.health</groupId>
|
||||||
<artifactId>base-system-common</artifactId>
|
<artifactId>base-system-common</artifactId>
|
||||||
<version>3.6.7</version>
|
<version>3.6.8</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- SpringCloud Alibaba Nacos -->
|
<!-- SpringCloud Alibaba Nacos -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
Loading…
Reference in New Issue