fix
Helius
2022-08-29 bc025be34be00d756cf11958bcf838fbfc6c565c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
}