xiaoyong931011
2022-11-30 03f330eaed9ae6666e6fbe72b12d0ce279bf56e6
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
package cc.mrbird.febs.dapp.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@TableName("dapp_system_profit")
public class DappSystemProfit extends BaseEntity {
 
    private Long memberId;
 
    private BigDecimal amount;
    //1:入列 2:出列
    private Integer state;
    public static final int STATE_IN = 1;
    public static final int STATE_OUT = 2;
 
    public DappSystemProfit(Long memberId, BigDecimal amount) {
        this.memberId = memberId;
        this.amount = amount;
    }
}