浏览代码

文化中心

dengsixing 2 周之前
父节点
当前提交
1615157234
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7 1
      src/main/java/com/fdkankan/external/entity/ZgxxzxPushLog.java

+ 7 - 1
src/main/java/com/fdkankan/external/entity/ZgxxzxPushLog.java

@@ -1,5 +1,6 @@
 package com.fdkankan.external.entity;
 
+import com.alibaba.excel.annotation.ExcelIgnore;
 import com.alibaba.excel.annotation.ExcelProperty;
 import com.mybatisflex.annotation.Id;
 import com.mybatisflex.annotation.KeyType;
@@ -26,24 +27,29 @@ import lombok.NoArgsConstructor;
 @Table(value = "t_zgxxzx_push_log")
 public class ZgxxzxPushLog implements Serializable {
 
+    @ExcelIgnore
     @Id(keyType = KeyType.Auto)
     private BigInteger id;
 
     @ExcelProperty("场景码")
     private String num;
 
-    @ExcelProperty("标题")
+    @ExcelIgnore
     private String title;
 
     /**
      * -1-失败,0-等待中,1-成功,2-推送中
      */
+    @ExcelIgnore
     private Integer status;
 
+    @ExcelIgnore
     private Date createTime;
 
+    @ExcelIgnore
     private Date updateTime;
 
+    @ExcelIgnore
     private String taskId;
 
 }