Просмотр исходного кода

102 总后台系统配置:关键词管理导出文件未正确展示列表数据

Long 2 месяцев назад
Родитель
Сommit
0a825f9b3e
1 измененных файлов с 5 добавлено и 7 удалено
  1. 5 7
      fs-service/src/main/java/com/fs/system/domain/SysKeyword.java

+ 5 - 7
fs-service/src/main/java/com/fs/system/domain/SysKeyword.java

@@ -35,19 +35,13 @@ public class SysKeyword extends BaseEntity{
     private String keywordContent;
 
     /**
-     * 关键字类型,字典 keyword_type(1-看课弹幕等)
+     * 关键字类型,字典 keyword_type(1-违禁词 2-敏感词等)
      */
-    @Excel(name = "关键字类型", dictType = "keyword_type")
     private Integer keywordType;
 
     /** 所属公司 */
-    @Excel(name = "所属公司")
     private Long companyId;
 
-    /** 备注 */
-    @Excel(name = "备注")
-    private String remark;
-
     @TableField(exist = false)
     @Excel(name = "类型名称")
     private String typeName;
@@ -56,4 +50,8 @@ public class SysKeyword extends BaseEntity{
     @Excel(name = "公司名称")
     private String companyName;
 
+    /** 备注 */
+    @Excel(name = "备注")
+    private String remark;
+
 }