This commit is contained in:
2025-10-05 02:25:01 +08:00
parent 7b576cf85c
commit fe622b9648
3 changed files with 11 additions and 1 deletions

View File

@@ -121,6 +121,8 @@
<if test="itemId != null and itemId != ''"> and item_id = #{itemId}</if>
<if test="callerItemId != null and callerItemId != ''"> and caller_item_id = #{callerItemId}</if>
<if test="orderTag != null and orderTag != ''"> and order_tag = #{orderTag}</if>
<if test="beginTime != null"> and order_time &gt;= #{beginTime}</if>
<if test="endTime != null"> and order_time &lt;= #{endTime}</if>
</where>
order by order_time desc
</select>