KKSU
2024-05-11 9af9ab4d7a638687024437a9e1d1e742fe1b4bb2
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
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 io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author 
 * @date 2022-03-21
 **/
@Data
@TableName("dapp_account_money_change")
public class DappAccountMoneyChangeEntity extends BaseEntity {
 
    public DappAccountMoneyChangeEntity() {
    }
 
    public DappAccountMoneyChangeEntity(Long memberId, BigDecimal preAmount, BigDecimal amount, BigDecimal afterAmount, Integer type, String content) {
        this.memberId = memberId;
        this.preAmount = preAmount;
        this.amount = amount;
        this.afterAmount = afterAmount;
        this.type = type;
        this.content = content;
    }
 
    private Long memberId;
    //原有积分
    private BigDecimal preAmount;
    //预期
 
    @ApiModelProperty(value = "今日收入")
    private BigDecimal amount;
    //实际
 
    @ApiModelProperty(value = "实际收入")
    private BigDecimal afterAmount;
 
 
    @ApiModelProperty(value = "贡献收入与业绩显示内容")
    private String content;
 
    /**
     * 类型 1-兑换 2-提现 3-采矿
     */
    private Integer type;
 
    @TableField(exist = false)
    private String address;
}