|
@@ -1,13 +1,17 @@
|
|
|
package com.fdkankan.agent.response;
|
|
|
|
|
|
+import com.alibaba.excel.annotation.ExcelIgnore;
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
@Data
|
|
|
public class LogListVo {
|
|
|
|
|
|
+ @ExcelIgnore
|
|
|
private Integer type; //权益类型
|
|
|
+ @ExcelIgnore
|
|
|
private Integer giveType; //授权方式
|
|
|
+ @ExcelIgnore
|
|
|
private Long userId; //用户id
|
|
|
|
|
|
@ExcelProperty("授权时间")
|
|
@@ -16,7 +20,7 @@ public class LogListVo {
|
|
|
@ExcelProperty("权益类型")
|
|
|
private String typeStr;
|
|
|
|
|
|
- @ExcelProperty("授予方式")
|
|
|
+ @ExcelProperty("授权方式")
|
|
|
private String giveTypeStr;
|
|
|
|
|
|
@ExcelProperty("账号")
|