fix
Helius
2022-06-11 65b836bcb362b0642ef8ab0d2da284e079325878
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;
}