李旭东
2023-12-08 7efc6ed86025b610cab109a2e9f83362740d8ed4
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.thhy.secure.modules.biz.integralAccount.entity;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.thhy.general.annotations.Excel;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.util.Date;
 
/**
 * @Author QiuYuHao
 * @CreateDate 2023-11-28 11:06:19
 */
@Builder
@Data
@AllArgsConstructor
@NoArgsConstructor
public class IntegralDetailDto {
 
    private String id;
    private Integer type;//1、获取 2、消耗
 
    private String createUser;
    private String companyId;
    private String userId;
    private Integer userType;
    private Double changeIntegral;//变量在积分超市 修改前的变量
 
 
    @Excel(sort = 1,title = "时间")
    private String createDate;
 
    private Date createTime;
    @Excel(sort = 2,title = "积分分值")
    private Double integralWater;//当前可改积分流水
 
    @Excel(sort = 3,title = "余额")
    private Double balanc;//当前余额
 
    @Excel(sort = 4,title = "类型")
    private String typeName;//1、获取 2、消耗
    private String integralSource;//积分怎么来的
    private String userTypeName;
 
    private String realName;//真实姓名
 
 
    @Excel(sort = 5,title = "说明")
    private String remark;//说明
 
 
}