| | |
| | | //查询指定代理信息 |
| | | @RequestMapping({"getAgentInfo.do"}) |
| | | @ResponseBody |
| | | public ServerResponse getAgentInfo(HttpServletRequest request) { |
| | | public ServerResponse getAgentInfo(HttpServletRequest request) throws Exception { |
| | | return this.iAgentUserService.getAgentInfo(request); |
| | | } |
| | | |
| | |
| | | //账户线下充值转账 创建充值订单 |
| | | @RequestMapping({"inMoney.do"}) |
| | | @ResponseBody |
| | | public ServerResponse inMoney(String amt, String payType, HttpServletRequest request) { |
| | | public ServerResponse inMoney(String amt, String payType, HttpServletRequest request) throws Exception { |
| | | return this.iUserRechargeService.inMoney(amt, payType, request); |
| | | } |
| | | } |
| | |
| | | |
| | | ServerResponse login(String paramString1, String paramString2, String paramString3, HttpServletRequest paramHttpServletRequest); |
| | | |
| | | ServerResponse getAgentInfo(HttpServletRequest paramHttpServletRequest); |
| | | ServerResponse getAgentInfo(HttpServletRequest paramHttpServletRequest) throws Exception; |
| | | |
| | | ServerResponse updatePwd(String paramString1, String paramString2, HttpServletRequest paramHttpServletRequest); |
| | | |
| | |
| | | } |
| | | |
| | | |
| | | public ServerResponse getAgentInfo(HttpServletRequest request) { |
| | | public ServerResponse getAgentInfo(HttpServletRequest request) throws Exception { |
| | | String host = ""; |
| | | ServerResponse serverResponse = this.iSiteInfoService.getInfo(request); |
| | | if (serverResponse.isSuccess()) { |