From c9e372db214b580fb74a64dedba276e6c58df3ed Mon Sep 17 00:00:00 2001 From: Wtd <1658714322@qq.com> Date: Sun, 22 Oct 2023 15:26:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=A1=A8=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=92=8C=E6=9B=B4=E6=94=B9=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../february/patient/circle/domain/Adopt.java | 22 ++++++++++++ .../patient/circle/domain/DiseaseProcess.java | 35 +++++++++++++++++++ .../february/patient/circle/domain/Role.java | 21 +++++++++++ 3 files changed, 78 insertions(+) create mode 100644 february-patient/february-patient-circle/february-patient-circle-common/src/main/java/com/february/patient/circle/domain/Adopt.java create mode 100644 february-patient/february-patient-circle/february-patient-circle-common/src/main/java/com/february/patient/circle/domain/DiseaseProcess.java create mode 100644 february-patient/february-patient-circle/february-patient-circle-common/src/main/java/com/february/patient/circle/domain/Role.java diff --git a/february-patient/february-patient-circle/february-patient-circle-common/src/main/java/com/february/patient/circle/domain/Adopt.java b/february-patient/february-patient-circle/february-patient-circle-common/src/main/java/com/february/patient/circle/domain/Adopt.java new file mode 100644 index 0000000..4ec47e1 --- /dev/null +++ b/february-patient/february-patient-circle/february-patient-circle-common/src/main/java/com/february/patient/circle/domain/Adopt.java @@ -0,0 +1,22 @@ +package com.february.patient.circle.domain; + +import io.swagger.models.auth.In; +import lombok.Data; + +/** + * @program: february + * @description: 采纳表 + * @author: Mr.Wang + * @create: 2023-10-22 15:24 + **/ +@Data +public class Adopt { + /** + * 采纳表id + */ + private Integer adoptId; + /** + * 评论id + */ + private Integer reviewId; +} diff --git a/february-patient/february-patient-circle/february-patient-circle-common/src/main/java/com/february/patient/circle/domain/DiseaseProcess.java b/february-patient/february-patient-circle/february-patient-circle-common/src/main/java/com/february/patient/circle/domain/DiseaseProcess.java new file mode 100644 index 0000000..cdd7d1f --- /dev/null +++ b/february-patient/february-patient-circle/february-patient-circle-common/src/main/java/com/february/patient/circle/domain/DiseaseProcess.java @@ -0,0 +1,35 @@ +package com.february.patient.circle.domain; + +import lombok.Data; + +import java.util.Date; + +/** + * @program: february + * @description: 治疗经历 + * @author: Mr.Wang + * @create: 2023-10-22 15:01 + **/ +@Data +public class DiseaseProcess { + /** + * 治疗经历id + */ + private Integer diseaseProcessId; + /** + * 医院名称 + */ + private String hospitalName; + /** + * 开始时间 + */ + private Date startTime; + /** + * 结束时间 + */ + private Date endTime; + /** + * 治疗经历 + */ + private String diseaseProcess; +} diff --git a/february-patient/february-patient-circle/february-patient-circle-common/src/main/java/com/february/patient/circle/domain/Role.java b/february-patient/february-patient-circle/february-patient-circle-common/src/main/java/com/february/patient/circle/domain/Role.java new file mode 100644 index 0000000..7ab03b6 --- /dev/null +++ b/february-patient/february-patient-circle/february-patient-circle-common/src/main/java/com/february/patient/circle/domain/Role.java @@ -0,0 +1,21 @@ +package com.february.patient.circle.domain; + +import lombok.Data; + +/** + * @program: february + * @description: 角色表 + * @author: Mr.Wang + * @create: 2023-10-22 14:56 + **/ +@Data +public class Role { + /** + * 角色id + */ + private Integer roleId; + /** + * 角色名称 + */ + private String roleName; +}