Helius
2022-03-29 d4a85f010f6b17caed4edf1e56b742c6c4e20b02
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
55
56
package cc.mrbird.febs.dapp.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author wzy
 * @date 2022-03-21
 **/
@Data
@TableName("dapp_fund_flow")
public class DappFundFlowEntity extends BaseEntity {
    public static final int WITHDRAW_STATUS_ING = 1;
    public static final int WITHDRAW_STATUS_AGREE = 2;
    public static final int WITHDRAW_STATUS_DISAGREE = 3;
 
    public DappFundFlowEntity() {}
 
    public DappFundFlowEntity(Long memberId, BigDecimal amount, Integer type, Integer status, Integer fee) {
        this.memberId = memberId;
        this.amount = amount;
        this.type = type;
        this.status = status;
        this.fee = fee;
 
        this.setCreateBy("system");
        this.setUpdateBy("system");
        this.setCreateTime(new Date());
        this.setUpdateTime(new Date());
        this.setVersion(1);
    }
 
    private Long memberId;
 
    private BigDecimal amount;
 
    /**
     * 类型 1-兑换 2-提现 3-采矿
     */
    private Integer type;
 
    /**
     * 状态 1-ing 2-成功 3-失败
     */
    private Integer status;
 
    @TableField(exist = false)
    private String address;
 
    private Integer fee;
}