会员余额明细获取

This commit is contained in:
张松
2025-03-25 00:37:17 +08:00
parent 9696b0edc3
commit 25a80d5bb5
5 changed files with 66 additions and 6 deletions

View File

@@ -15,6 +15,13 @@
<if test="userId != null">
and a.user_id=#{userId}
</if>
<if test="startTime != null and startTime != ''">
and a.create_time >= #{startTime}
</if>
<if test="endTime != null and endTime != ''">
and a.create_time &lt;= #{endTime}
</if>
order by a.create_time desc
</select>
</mapper>