| | |
| | | |
| | | @RequestMapping({"auth.do"}) |
| | | @ResponseBody |
| | | public ServerResponse auth(String realName, String idCard, String realType,String vaildNumber ,String img1key, String img2key, String img3key, HttpServletRequest request) { |
| | | public ServerResponse auth(String realName, String idCard, Integer realType,String vaildNumber ,String img1key, String img2key, String img3key, HttpServletRequest request) { |
| | | return this.iUserService.auth(realName, idCard, realType, vaildNumber,img1key, img2key, img3key, request); |
| | | } |
| | | |
| | |
| | | private String realName; |
| | | private String idCard; |
| | | //实名证件类型1.驾驶执照 2.护照 3.身份证件 |
| | | private String realType; |
| | | private Integer realType; |
| | | private Integer accountType; |
| | | private String recomPhone; |
| | | private Integer isLock; |
| | |
| | | |
| | | ServerResponse update(User paramUser); |
| | | |
| | | ServerResponse auth(String paramString1, String paramString2, String realType, String vaildNumber,String paramString3, String paramString4, String paramString5, HttpServletRequest paramHttpServletRequest); |
| | | ServerResponse auth(String paramString1, String paramString2, Integer realType, String vaildNumber,String paramString3, String paramString4, String paramString5, HttpServletRequest paramHttpServletRequest); |
| | | |
| | | ServerResponse transAmt(Integer paramInteger1, Integer paramInteger2, HttpServletRequest paramHttpServletRequest); |
| | | |
| | |
| | | } |
| | | |
| | | |
| | | public ServerResponse auth(String realName, String idCard, String realType, String vaildNumber, String img1key, String img2key, String img3key, HttpServletRequest request) { |
| | | public ServerResponse auth(String realName, String idCard, Integer realType, String vaildNumber, String img1key, String img2key, String img3key, HttpServletRequest request) { |
| | | if (StringUtils.isBlank(realName) || |
| | | StringUtils.isBlank(idCard)) { |
| | | |
| | |
| | | private String idCard; |
| | | |
| | | //实名证件类型1.驾驶执照 2.护照 3.身份证件 |
| | | private String realType; |
| | | private Integer realType; |
| | | |
| | | private Integer accountType; |
| | | |