xiaoyong931011
2022-07-08 14cd4cc6fee78703a5fafbab7453d840d36f4308
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);
}