From 23a58bdc842a82f95f015880dff1db9399534f4e Mon Sep 17 00:00:00 2001 From: "kuang.yife" Date: Fri, 21 Jun 2024 21:45:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=AC=E4=BC=97=E5=8F=B7-=E6=96=87=E7=AB=A0?= =?UTF-8?q?=E6=A0=87=E7=AD=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/templates/system/playlet/account/add.html | 6 ++++++ .../resources/templates/system/playlet/account/edit.html | 6 ++++++ .../com/playlet/system/domain/PlayletPublicAccount.java | 3 +++ .../resources/mapper/system/PlayletPublicAccountMapper.xml | 6 +++++- 4 files changed, 20 insertions(+), 1 deletion(-) diff --git a/playlet-admin/src/main/resources/templates/system/playlet/account/add.html b/playlet-admin/src/main/resources/templates/system/playlet/account/add.html index f9edbae..c133ca5 100644 --- a/playlet-admin/src/main/resources/templates/system/playlet/account/add.html +++ b/playlet-admin/src/main/resources/templates/system/playlet/account/add.html @@ -51,6 +51,12 @@ +
+ +
+ +
+
diff --git a/playlet-admin/src/main/resources/templates/system/playlet/account/edit.html b/playlet-admin/src/main/resources/templates/system/playlet/account/edit.html index 31b285f..4b8ad31 100644 --- a/playlet-admin/src/main/resources/templates/system/playlet/account/edit.html +++ b/playlet-admin/src/main/resources/templates/system/playlet/account/edit.html @@ -44,6 +44,12 @@
+
+ +
+ +
+
diff --git a/playlet-system/src/main/java/com/playlet/system/domain/PlayletPublicAccount.java b/playlet-system/src/main/java/com/playlet/system/domain/PlayletPublicAccount.java index d97a69e..0e95f0b 100644 --- a/playlet-system/src/main/java/com/playlet/system/domain/PlayletPublicAccount.java +++ b/playlet-system/src/main/java/com/playlet/system/domain/PlayletPublicAccount.java @@ -42,6 +42,9 @@ public class PlayletPublicAccount extends BaseEntity @ApiModelProperty(value = "认证标识 01.个人,02.企业") private String detailType; + @ApiModelProperty(value = "文章标签,多个用逗号隔开") + private String detailTags; + /** 简介 */ @Excel(name = "简介") @ApiModelProperty(value = "简介") diff --git a/playlet-system/src/main/resources/mapper/system/PlayletPublicAccountMapper.xml b/playlet-system/src/main/resources/mapper/system/PlayletPublicAccountMapper.xml index 7c822f8..4023ff0 100644 --- a/playlet-system/src/main/resources/mapper/system/PlayletPublicAccountMapper.xml +++ b/playlet-system/src/main/resources/mapper/system/PlayletPublicAccountMapper.xml @@ -9,6 +9,7 @@ + @@ -24,7 +25,7 @@ - select id, name, public_type, detail_type, introduction, author_alias, manager_id, logo_url, address, original_content_count, followers_count, create_by, create_time, update_by, update_time, remark from playlet_public_account + select id, name, public_type, detail_type, detail_tags, introduction, author_alias, manager_id, logo_url, address, original_content_count, followers_count, create_by, create_time, update_by, update_time, remark from playlet_public_account