luodangjia
2024-12-17 912d2e62391b1459952375a60ba87cfa842f1c41
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
 
}