xiaoyong931011
2023-10-10 18fb219ee5ed5c267665b4c84d2306eea25349f6
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 cc.mrbird.febs.mall.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
@TableName("chat_amount_flow")
public class ChatAmountFlow {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     * 1:充值 2:提现 3:红包 4:转账 5:创建群聊
     */
    private Integer type;
    /**
     * 金额
     */
    private BigDecimal amount;
    /**
     * 用户ID
     */
    private Long userId;
    /**
     * 创建时间
     */
    private Date createTime;
    /**
     * 当前余额
     */
    private BigDecimal avaAmount;
    /**
     * 1 :成功 2:失败 3:进行中
     */
    private Integer state;
    /**
     * 关联ID
     */
    private Long relationId;
    /**
     * 说明
     */
    private String remark;
}