新版仿ok交易所-后端
1
zj
2025-07-04 a2dc849bc20bffaa4ad45d68e401d3892ace24b3
trading-order-admin/src/main/java/com/yami/trading/api/controller/ApiRealNameAuthContoller.java
@@ -122,20 +122,20 @@
        map.put("idName", record.getIdName());
        map.put("idNumber", record.getIdNumber());
        map.put("name", record.getName());
        map.put("idFrontImg", record.getIdFrontImg());
        map.put("idBackImg", record.getIdBackImg());
        map.put("idFrontImg", Constants.IMAGES_HTTP+record.getIdFrontImg());
        map.put("idBackImg", Constants.IMAGES_HTTP+record.getIdBackImg());
        map.put("status", record.getStatus());
        map.put("kyc_status", record.getStatus());
        map.put("msg", record.getMsg());
        map.put("handheldPhoto", record.getHandheldPhoto());
        map.put("handheldPhoto", Constants.IMAGES_HTTP+record.getHandheldPhoto());
        map.put("idname", record.getIdName());
        map.put("idnumber", record.getIdNumber());
        map.put("idimg_1_path", awsS3OSSFileService.getUrl(record.getIdFrontImg()));
        map.put("idimg_2_path", awsS3OSSFileService.getUrl(record.getIdBackImg()));
        map.put("idimg_3_path", awsS3OSSFileService.getUrl(record.getHandheldPhoto()));
        map.put("idimg_1", record.getIdFrontImg());
        map.put("idimg_2", record.getIdBackImg());
        map.put("idimg_3", record.getHandheldPhoto());
        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());
        return Result.succeed(map);
    }