This commit is contained in:
sxu 2023-12-08 15:34:48 +08:00
parent 0d2927a2ca
commit 9f185dd9a7
1 changed files with 2 additions and 2 deletions

View File

@ -109,10 +109,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="monthLeasePriceOrderBy != null and monthLeasePriceOrderBy == 'DESC'">
,d.month_lease_price DESC
</if>
<if test="updateTime != null and monthLeasePriceOrderBy == 'ASC'">
<if test="updateTimeOrderBy != null and updateTimeOrderBy == 'ASC'">
,d.update_time
</if>
<if test="updateTime != null and monthLeasePriceOrderBy == 'DESC'">
<if test="updateTimeOrderBy != null and updateTimeOrderBy == 'DESC'">
,d.update_time DESC
</if>
</select>