| | |
| | | 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; |
| | |
| | | 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; |
| | | |
| | |
| | | |
| | | @Resource |
| | | private AdminWithdrawService adminWithdrawService; |
| | | @Autowired |
| | | private RedisHandler redisHandler; |
| | | |
| | | @Autowired |
| | | private JdbcTemplate jdbcTemplate; |
| | | |
| | | @Autowired |
| | | private WalletService walletService; |
| | | |
| | | |
| | | private static final String action = "normal/adminWithdrawAction!"; |
| | | |
| | |
| | | LockFilter.remove(id); |
| | | } |
| | | } |
| | | |
| | | |
| | | modelAndView.addObject("message", "操作成功"); |
| | | return modelAndView; |
| | | } |