Compare commits

...
2 Commits
Author SHA1 Message Date
hejiayang 712f295d57 Merge remote-tracking branch 'origin/master' 2026-01-07 14:53:36 +08:00
hejiayang e39496cca1 用户余额心跳调整 2026-01-07 14:53:17 +08:00
@@ -573,11 +573,10 @@
SELECT
member_id,
top_up_balance,
reward_balance,
(top_up_balance + reward_balance) AS balance
FROM
st_client_member_balance
WHERE
reward_balance
FROM st_client_member_balance
WHERE member_id IN (SELECT id FROM sys_user_sub WHERE update_time > FROM_UNIXTIME(#{timestamp}/1000))
OR
create_time > FROM_UNIXTIME(#{timestamp} / 1000)
OR update_time > FROM_UNIXTIME(#{timestamp} / 1000)
OR last_consumption_time > FROM_UNIXTIME(#{timestamp} / 1000)