From 0c51a577db337520452022d9d6a22b720ef858d4 Mon Sep 17 00:00:00 2001
From: 无关风月 <443237572@qq.com>
Date: 星期二, 31 十二月 2024 14:13:01 +0800
Subject: [PATCH] 全部代码、数据库提交

---
 xinquan-api/xinquan-api-system/src/main/java/com/xinquan/system/api/domain/MeditationReport.java |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/xinquan-api/xinquan-api-system/src/main/java/com/xinquan/system/api/domain/MeditationReport.java b/xinquan-api/xinquan-api-system/src/main/java/com/xinquan/system/api/domain/MeditationReport.java
index 3d81fc0..f03b19b 100644
--- a/xinquan-api/xinquan-api-system/src/main/java/com/xinquan/system/api/domain/MeditationReport.java
+++ b/xinquan-api/xinquan-api-system/src/main/java/com/xinquan/system/api/domain/MeditationReport.java
@@ -42,6 +42,9 @@
     @ApiModelProperty(value = "uid")
     @TableField(exist = false)
     private String uid;
+    @ApiModelProperty(value = "点赞数")
+    @TableField(exist = false)
+    private Integer likeCount;
     @ApiModelProperty(value = "用户名称")
     @TableField(exist = false)
     private String userName;
@@ -69,10 +72,23 @@
     @ApiModelProperty(value = "提问内容")
     @TableField(exist = false)
     private String content;
+    @ApiModelProperty(value = "提问时间")
+    @TableField(exist = false)
+    private String contentTime;
     @ApiModelProperty(value = "价格设定 1=免费 2=会员免费 3=单独收费")
     @TableField(exist = false)
     private Integer chargeType;
 
+    @ApiModelProperty(value = "回复内容")
+    @TableField(exist = false)
+    private String replyContent;
+    @ApiModelProperty(value = "是否显示 1= 是 2=否")
+    @TableField(exist = false)
+    private Integer showFlag;
+    @ApiModelProperty(value = "疗愈封面图")
+    @TableField(exist = false)
+    private String coverUrl;
+
     @ApiModelProperty(value = "举报原因")
     @TableField("report_content")
     private String reportContent;

--
Gitblit v1.7.1