| | |
| | | //查询系统基本设置信息 |
| | | @RequestMapping({"getInfo.do"}) |
| | | @ResponseBody |
| | | public ServerResponse getInfo(HttpServletRequest request) { |
| | | public ServerResponse getInfo(HttpServletRequest request) throws Exception { |
| | | return this.iSiteInfoService.getInfo(request); |
| | | } |
| | | |
| | |
| | | public interface IUserRechargeService { |
| | | ServerResponse checkInMoney(int paramInt, Integer paramInteger); |
| | | |
| | | ServerResponse inMoney(String paramString1, String paramString2, HttpServletRequest paramHttpServletRequest); |
| | | ServerResponse inMoney(String paramString1, String paramString2, HttpServletRequest paramHttpServletRequest) throws Exception; |
| | | |
| | | ServerResponse findUserRechargeByOrderSn(String paramString); |
| | | |
| | |
| | | } |
| | | |
| | | |
| | | public ServerResponse inMoney(String amt, String payType, HttpServletRequest request) { |
| | | public ServerResponse inMoney(String amt, String payType, HttpServletRequest request) throws Exception { |
| | | if (StringUtils.isBlank(amt) || StringUtils.isBlank(payType)) { |
| | | return ServerResponse.createByErrorMsg("The parameter cannot be null"); |
| | | } |