Exemplo n.º 1
0
 /**
  * 新增客户基本信息
  *
  * @throws Exception
  */
 @ResponseBody
 @RequestMapping(value = "addCustomer.htm")
 public ResObj customerAdd(
     @ReqAttr(value = "USER_INFO") OkdUserInof userInof,
     @RequestParam Map<String, String> reqParam,
     HttpServletRequest request)
     throws Exception {
   return customerService.customerAdd(userInof, reqParam);
 }