查询签到人数 bug

This commit is contained in:
GYJ
2024-12-28 14:30:33 +08:00
parent 5a305c2d43
commit f11c80b895
7 changed files with 24 additions and 14 deletions

View File

@@ -215,7 +215,7 @@ public class WuyouController {
}
if (payDetails.getState() == 1) {
log.info("订单表信息丢失!");
log.info("重复回调!参数: {}", JSONObject.toJSONString(notifyDto));
return "success";
}

View File

@@ -720,8 +720,6 @@ public class CashOutServiceImpl extends ServiceImpl<CashOutDao, CashOut> impleme
sumQuery.groupBy("user_id");
List<Map<String, Object>> sumList = baseMapper.selectMaps(sumQuery);
System.out.println("sumList = " + sumList);
for (Map<String, Object> objectMap : sumList) {
Double totalMoney = Convert.toDouble(objectMap.get("money"));
Integer total = Convert.toInt(objectMap.get("total"));