| | |
| | | if (realNameAuthRecord != null) { |
| | | switch (realNameAuthRecord.getStatus()) { |
| | | case 0: |
| | | msg = "已经提交申请,请等待审核"; |
| | | msg = "Application submitted, please wait for review"; |
| | | break; |
| | | case 1: |
| | | msg = "审核中"; |
| | | msg = "Under review"; |
| | | break; |
| | | case 2: |
| | | msg = "审核已通过"; |
| | | msg = "Already approved"; |
| | | break; |
| | | case 3: |
| | | realNameAuthRecord.setStatus(1); |
| | |
| | | } |
| | | |
| | | if (model.getIdNumber().length()>50){ |
| | | throw new YamiShopBindException("证件号码长度超过50"); |
| | | throw new YamiShopBindException("ID number exceeds 50 characters"); |
| | | } |
| | | if (model.getName().length()>50){ |
| | | throw new YamiShopBindException("实名姓名长度超过50"); |
| | | throw new YamiShopBindException("Real name exceeds 50 characters"); |
| | | } |
| | | BeanUtils.copyProperties(model, realNameAuthRecord); |
| | | realNameAuthRecord.setUserId(user.getUserId()); |
| | |
| | | map.put("idName", record.getIdName()); |
| | | map.put("idNumber", record.getIdNumber()); |
| | | map.put("name", record.getName()); |
| | | map.put("idFrontImg", Constants.IMAGES_HTTP+record.getIdFrontImg()); |
| | | map.put("idBackImg", Constants.IMAGES_HTTP+record.getIdBackImg()); |
| | | map.put("idFrontImg", record.getIdFrontImg()); |
| | | map.put("idBackImg", record.getIdBackImg()); |
| | | map.put("status", record.getStatus()); |
| | | map.put("kyc_status", record.getStatus()); |
| | | map.put("msg", record.getMsg()); |
| | | map.put("handheldPhoto", Constants.IMAGES_HTTP+record.getHandheldPhoto()); |
| | | map.put("handheldPhoto", record.getHandheldPhoto()); |
| | | map.put("idname", record.getIdName()); |
| | | map.put("idnumber", record.getIdNumber()); |
| | | map.put("idimg_1_path", Constants.IMAGES_HTTP+record.getIdFrontImg()); |
| | | map.put("idimg_2_path", Constants.IMAGES_HTTP+record.getIdBackImg()); |
| | | map.put("idimg_3_path", Constants.IMAGES_HTTP+record.getHandheldPhoto()); |
| | | map.put("idimg_1", Constants.IMAGES_HTTP+record.getIdFrontImg()); |
| | | map.put("idimg_2", Constants.IMAGES_HTTP+record.getIdBackImg()); |
| | | map.put("idimg_3", Constants.IMAGES_HTTP+record.getHandheldPhoto()); |
| | | map.put("idimg_1_path",record.getIdFrontImg()); |
| | | map.put("idimg_2_path",record.getIdBackImg()); |
| | | map.put("idimg_3_path",record.getHandheldPhoto()); |
| | | map.put("idimg_1",record.getIdFrontImg()); |
| | | map.put("idimg_2",record.getIdBackImg()); |
| | | map.put("idimg_3",record.getHandheldPhoto()); |
| | | return Result.succeed(map); |
| | | } |
| | | |