KKSU
2024-06-14 d452f7803fde490d3b9bb96b9edbd7935127d480
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
package cc.mrbird.febs.dapp.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author 
 * @date 2022-03-24
 **/
@Data
@TableName(value = "dapp_mine_data")
public class DappMineDataEntity {
 
    private BigDecimal totalOutput;
 
    private Integer validNode;
 
    private Integer partnerCnt;
 
    private BigDecimal partnerIncome;
 
    /**
     * 保险池
     */
    private BigDecimal safePool;
}