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; +}