|
|
@@ -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;
|
|
|
|
|
|
}
|