From c5435a420429ee00001a97b77026affd9ae0a3ba Mon Sep 17 00:00:00 2001 From: 18404992668 <44167514@qq.com> Date: Sun, 22 Oct 2023 20:05:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0response?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DetailsPatientCircleDetailCollection.java | 196 ++++++++++++++++++ 1 file changed, 196 insertions(+) create mode 100644 src/main/java/com/four/common/duck/response/DetailsPatientCircleDetailCollection.java diff --git a/src/main/java/com/four/common/duck/response/DetailsPatientCircleDetailCollection.java b/src/main/java/com/four/common/duck/response/DetailsPatientCircleDetailCollection.java new file mode 100644 index 0000000..e593182 --- /dev/null +++ b/src/main/java/com/four/common/duck/response/DetailsPatientCircleDetailCollection.java @@ -0,0 +1,196 @@ +package com.four.common.duck.response; + +import lombok.Data; + +import java.math.BigDecimal; +import java.util.Date; + +/** + * @program: four-common-duck + * @author: spc + * @create: 2023-10-22 20:02 + * @Version 1.0 + **/ + +@Data +public class DetailsPatientCircleDetailCollection { + /** + * 病友圈详情id + */ + private Integer detailsPatientCircleId; + + /** + * 标题 + */ + private String title; + + /** + * 发布人id + */ + private Integer publisherId; + + /** + * 病症id + */ + private Integer diseaseId; + + /** + * 科室id + */ + private Integer departmentId; + + /** + * 病症详情 + */ + private String detailsSymptoms; + + /** + * 治疗经历开始时间 + */ + private Date treatmentExperienceStartTime; + + /** + * 治疗经历结束时间 + */ + private Date treatmentExperienceEndTime; + + /** + * 治疗经历 + */ + private String treatmentExperience; + + /** + * 相关图片 + */ + private String relatedPictures; + + /** + * 提升悬赏额度 + */ + private Integer rewardAmount; + + /** + * 收藏数量 + */ + private Integer collectionQuantity; + + /** + * 评论数量 + */ + private Integer numberComments; + + //-------------------------------------------------------- + //-------------------------------------------------------- + //-------------------------------------------------------- + /** + * 常见病症+常见药品id + */ + private Integer id; + + /** + * 名称 + */ + private String name; + + /** + * 与id关联 + */ + private Integer pid; + + //----------------------------------------------------------- + //----------------------------------------------------------- + //----------------------------------------------------------- + + /** + * 详情表中的收藏id + */ + private Integer detailCollectionId; + /** + * 收藏时间 + */ + private Date collectionTime; + + /** + * 收藏人 + */ + private String collector; + //------------------------------------------------------------ + //------------------------------------------------------------ + //------------------------------------------------------------ + /** + * 用户id + */ + private Integer userId; + + /** + * 用户名称 + */ + private String username; + + /** + * 用户密码 + */ + private String password; + + /** + * 邮箱 + */ + private String userEmail; + + /** + * 手机号 + */ + private String userPhone; + + /** + * 头像 + */ + private String userAvatar; + + /** + * 性别 + */ + private String userSex; + + /** + * 体征 + */ + private String userSign; + + /** + * 注册时间 + */ + private Date registrationTime; + + /** + * 绑定微信状态 1:未绑定 2:已绑定 + */ + private Integer bindWechatStatus; + + /** + * 实名认证状态 1:未绑定 2:已绑定 + */ + private Integer realNameAuthenticationStatus; + + /** + * 绑定银行卡状态 1:未绑定 2:已绑定 + */ + private Integer bindBankCardStatus; + + /** + * 余额 + */ + private BigDecimal userMoney; + + /** + * 邀请码 + */ + private String invitationCode; + + /** + * 状态1:患者 2:医生 + * @return + */ + private Integer differentialState; +} +