| | |
| | | import com.yami.trading.common.domain.Result; |
| | | import com.yami.trading.common.util.DateUtil; |
| | | import com.yami.trading.service.*; |
| | | import com.yami.trading.service.chat.otc.OtcMessageUserService; |
| | | import com.yami.trading.service.user.UserDataService; |
| | | import com.yami.trading.service.user.UserService; |
| | | import io.swagger.annotations.Api; |
| | |
| | | @Autowired |
| | | RechargeBlockchainOrderService rechargeBlockchainOrderService; |
| | | |
| | | |
| | | @Autowired |
| | | OtcMessageUserService otcMessageUserService; |
| | | |
| | | @Autowired |
| | | WithdrawService withdrawService; |
| | |
| | | waitCountDto.setRealNameAuthCount(realNameAuthRecordService.waitCount()); |
| | | waitCountDto.setWithdrawCount(withdrawService.waitCount()); |
| | | waitCountDto.setRechargeCount(rechargeBlockchainOrderService.waitCount()); |
| | | waitCountDto.setC2cMsgCount(otcMessageUserService.waitCount()); |
| | | return Result.ok(waitCountDto); |
| | | } |
| | | |