KKSU
2024-04-01 376cb163c3d3af9e7091e64a347f3e3323de4e76
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
 
    DappHdRecord selectNewRecord();
 
}