xiaoyong931011
2022-07-12 a356bf91d182d4862a653b1355e820db7bd68575
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cc.mrbird.febs.dapp.mapper;
 
import cc.mrbird.febs.dapp.entity.DappMineDataEntity;
import org.apache.ibatis.annotations.Param;
 
import java.math.BigDecimal;
 
public interface DappSystemDao {
 
    DappMineDataEntity selectMineDataForOne();
 
    int updateDappMineData(@Param("totalOutput")BigDecimal totalOutput,
                           @Param("validNode")Integer validNode,
                           @Param("partnerCnt")Integer partnerCnt,
                           @Param("partnerIncome")BigDecimal partnerIncome);
}