1
zj
2025-01-17 42ba802e77dea3e36fb24468919bdca111468a5c
src/main/java/project/web/admin/AdminWithdrawController.java
@@ -10,6 +10,7 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;
@@ -20,6 +21,10 @@
import kernel.web.Page;
import kernel.web.PageActionSupport;
import project.Constants;
import project.redis.RedisHandler;
import project.wallet.WalletGatherService;
import project.wallet.WalletService;
import project.wallet.internal.WalletGatherServiceImpl;
import project.withdraw.AdminWithdrawService;
import util.LockFilter;
@@ -31,6 +36,15 @@
   @Resource
   private AdminWithdrawService adminWithdrawService;
   @Autowired
   private RedisHandler redisHandler;
   @Autowired
   private JdbcTemplate jdbcTemplate;
   @Autowired
   private WalletService walletService;
   private static final String action = "normal/adminWithdrawAction!";
   
@@ -229,7 +243,7 @@
            LockFilter.remove(id);
         }
      }
      modelAndView.addObject("message", "操作成功");
      return modelAndView;
   }