KKSU
2024-04-29 2a15d38ae05314799daa24e26779e036c5ec8f39
src/main/resources/mapper/dapp/DappHdRecordMapper.xml
@@ -16,6 +16,24 @@
         dapp_coin_price
         order by CREATE_TIME desc
    </select>
    <select id="findHdRecordInPage" resultType="cc.mrbird.febs.dapp.entity.DappHdRecord">
        SELECT
         *
      FROM
         dapp_hd_record
      <where>
         <if test="record != null">
            <if test="record.startTime != null and record.startTime != ''">
               and create_time &gt;= #{record.startTime}
            </if>
            <if test="record.endTime != null and record.endTime != ''">
               and create_time &lt;= #{record.endTime}
            </if>
         </if>
      </where>
         order by CREATE_TIME desc
    </select>
   <select id="selectNewRecord" resultType="cc.mrbird.febs.dapp.entity.DappHdRecord">
      SELECT