<?xml version="1.0" encoding="UTF-8"?>
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
<mapper namespace="cc.mrbird.febs.dapp.mapper.DappHdRecordMapper">
|
|
<select id="findPlatformBannerInPage" resultType="cc.mrbird.febs.dapp.entity.PlatformBanner">
|
SELECT
|
*
|
FROM
|
platform_banner
|
order by CREATE_TIME desc
|
</select>
|
<select id="findCoinPriceInPage" resultType="cc.mrbird.febs.dapp.entity.DappCoinPrice">
|
SELECT
|
*
|
FROM
|
dapp_coin_price
|
order by CREATE_TIME desc
|
</select>
|
<select id="findHdRecordInPage" resultType="cc.mrbird.febs.dapp.entity.DappHdRecord">
|
SELECT
|
*
|
FROM
|
dapp_hd_record
|
order by CREATE_TIME desc
|
</select>
|
|
<select id="selectNewRecord" resultType="cc.mrbird.febs.dapp.entity.DappHdRecord">
|
SELECT
|
a.*
|
FROM
|
dapp_hd_record a
|
ORDER BY
|
a.create_time DESC
|
LIMIT 1
|
</select>
|
|
</mapper>
|