xiaoyong931011
2022-10-21 32f732a6ef30a635cca0a4e224ca263c9ae94d79
20221021
1 files modified
4 ■■■■ changed files
src/main/resources/mapper/dapp/DappAccountMoneyChangeDao.xml 4 ●●●● patch | view | raw | blame | history
src/main/resources/mapper/dapp/DappAccountMoneyChangeDao.xml
@@ -51,10 +51,10 @@
                and a.type=#{record.type}
            </if>
            <if test="record.startTime != null and record.startTime != ''">
                and a.create_time &gt;= #{record.startTime}
                and date_format(a.create_time, '%Y-%m-%d') &gt;= #{record.startTime}
            </if>
            <if test="record.endTime != null and record.endTime != ''">
                and a.create_time &lt;= #{record.endTime}
                and date_format(a.create_time, '%Y-%m-%d') &lt;= #{record.endTime}
            </if>
        </where>
        order by a.create_time desc