修改getPileFeedListV2查询sql

This commit is contained in:
Guoqs
2025-03-26 21:00:13 +08:00
parent 737d64e98d
commit 3b4c90d818

View File

@@ -137,12 +137,12 @@
<if test="frameType != null and frameType != ''">
and frame_type = #{frameType,jdbcType=VARCHAR}
</if>
<if test="startTime != null and startTime != ''">
<if test="startTime != null">
and create_time &gt;= #{startTime,jdbcType=TIMESTAMP}
</if>
<if test="endTime != null and endTime != ''">
<if test="endTime != null">
and create_time &lt;= #{endTime,jdbcType=TIMESTAMP}
</if>
order by create_time desc
</select>
</mapper>
</mapper>