fix(system): 修复租户积分查询时间条件判断逻辑

This commit is contained in:
2025-11-24 15:15:43 +08:00
parent 023a01b7a2
commit f03877c1d5

View File

@@ -35,7 +35,7 @@
<if test="pageReqVO.type != null">
and stp.type = #{pageReqVO.type}
</if>
<if test="pageReqVO.createdAt != null">
<if test="pageReqVO.createdAt != null and pageReqVO.createdAt.length == 2">
and stp.created_at between #{pageReqVO.createdAt[0]} and #{pageReqVO.createdAt[1]}
</if>
</where>