KKSU
2024-05-15 795a2386c9fef02a43baa640af096a741213d065
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cc.mrbird.febs.dapp.mapper;
 
import cc.mrbird.febs.dapp.entity.DappCoinPrice;
import cc.mrbird.febs.dapp.entity.DappHdRecord;
import cc.mrbird.febs.dapp.entity.PlatformBanner;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.apache.ibatis.annotations.Param;
 
public interface DappHdRecordMapper extends BaseMapper<DappHdRecord> {
 
    IPage<PlatformBanner> findPlatformBannerInPage(Page<PlatformBanner> page,
                                                   @Param("record")PlatformBanner platformBannerEntity);
 
    IPage<DappCoinPrice> findCoinPriceInPage(Page<DappCoinPrice> page, @Param("record")DappCoinPrice dappCoinPrice);
 
    IPage<DappHdRecord> findHdRecordInPage(Page<DappHdRecord> page, @Param("record")DappHdRecord dappCoinPrice);
 
    DappHdRecord selectNewRecord();
 
}