ソースを参照

Merge branch 'hurx'

hurx 1 日 前
コミット
36e0c47cc3

+ 5 - 0
ruoyi-modules/ruoyi-customer/src/main/java/org/dromara/customer/domain/CustomerMessage.java

@@ -73,5 +73,10 @@ public class CustomerMessage extends TenantEntity {
      */
     private String remark;
 
+    /**
+     * 封面图片
+     */
+    private String coverUrl;
+
 
 }

+ 4 - 1
ruoyi-modules/ruoyi-customer/src/main/java/org/dromara/customer/domain/bo/CustomerMessageBo.java

@@ -65,5 +65,8 @@ public class CustomerMessageBo extends BaseEntity {
      */
     private String remark;
 
-
+    /**
+     * 封面图片
+     */
+    private String coverUrl;
 }

+ 5 - 0
ruoyi-modules/ruoyi-customer/src/main/java/org/dromara/customer/domain/vo/CustomerMessageVo.java

@@ -66,4 +66,9 @@ public class CustomerMessageVo implements Serializable {
     private Date createTime;
 
     private String status;
+
+    /**
+     * 封面图片
+     */
+    private String coverUrl;
 }