package com.ruoyi.other.excel;
|
|
import com.ruoyi.common.core.annotation.Excel;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
@Data
|
public class ShopPointEX {
|
@Excel(name = "变动类型")
|
private String type;
|
|
@Excel(name = "历史余额")
|
private Integer historicalPoint;
|
|
@Excel(name = "变动金额")
|
private Integer variablePoint;
|
|
@Excel(name = "变动时间")
|
private LocalDateTime createTime;
|
|
@Excel(name = "变动用户id")
|
private Long createUserId;
|
|
@Excel(name = "关联对象id")
|
private Long objectId;
|
|
@Excel(name = "门店名称")
|
private String shopName;
|
|
@Excel(name = "店长姓名")
|
private String shopLeaderName;
|
|
@Excel(name = "联系电话")
|
private String phone;
|
|
}
|