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