/** * 查询客户银行卡信息 * * @throws Exception */ @ResponseBody @RequestMapping(value = "findCusSelCards.htm") public Object customerSelCards( @ReqAttr(value = "USER_INFO") OkdUserInof userInof, @RequestParam Map<String, String> reqParam, HttpServletRequest request) throws Exception { return customerService.customerSelCards(userInof, reqParam); }
/** * 修改银行卡信息 * * @throws Exception */ @ResponseBody @RequestMapping(value = "updateCustomerCard.htm") public ResObj customerUpdateCard( @ReqAttr(value = "USER_INFO") OkdUserInof userInof, @RequestParam Map<String, String> reqParam, HttpServletRequest request) throws Exception { return customerService.customerUpdateCard(userInof, reqParam); }