xiaoyong931011
2022-10-29 c84de2a02892d1a4d9af628b226ee0960011fd41
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;
}