fxi
wzy
2022-07-30 05c0dd66f75504c162022a9c21b76aeb44ee8498
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;
}