update 后台管理新增定时任务开关,收益入库定时任务修改。新增用户待支付汇总 接口

This commit is contained in:
yyb
2025-09-05 14:18:23 +08:00
parent ec8faeb41d
commit f0a2309b42
4 changed files with 22 additions and 12 deletions

View File

@@ -45,6 +45,6 @@
</where>
</select>
<select id="summaryOfPendingPayments" resultType="com.m2pool.manage.dto.SummaryOfPendingPaymentsDto">
select coin, max(max_height) as maxHeight, max(should_out_date) AS shouldOutDate, `user`, sum(amount) as needPayAmount from wallet_in where state = 2 group by coin,`user`;
select coin, max(max_height) as maxHeight, max(should_out_date) AS shouldOutDate, `user`, sum(amount) as needPayAmount from wallet_in where state = 2 group by coin,`user`
</select>
</mapper>