新版仿ok交易所-后端
zyy
2025-08-26 9cadad100ba1d3c18966f9df7e1c3213abc0d214
trading-order-admin/src/main/java/com/yami/trading/admin/controller/user/UserSafewordApplyController.java
@@ -4,6 +4,7 @@
import com.yami.trading.admin.model.UserSafewordApplyExamineModel;
import com.yami.trading.admin.model.UserSafewordApplyModel;
import com.yami.trading.bean.user.dto.UserSafewordApplyDto;
import com.yami.trading.common.constants.Constants;
import com.yami.trading.common.domain.Result;
import com.yami.trading.service.AwsS3OSSFileService;
import com.yami.trading.service.RealNameAuthRecordService;
@@ -52,11 +53,11 @@
        for(UserSafewordApplyDto safewordApplyDto:page.getRecords()){
            safewordApplyDto.setIdcardPathFront(
                    awsS3OSSFileService.getUrl(safewordApplyDto.getIdcardPathBack()));
                    Constants.IMAGES_HTTP+safewordApplyDto.getIdcardPathBack());
            safewordApplyDto.setIdcardPathBack(
                    awsS3OSSFileService.getUrl(safewordApplyDto.getIdcardPathBack()));
                    Constants.IMAGES_HTTP+safewordApplyDto.getIdcardPathBack());
            safewordApplyDto.setIdcardPathHold(
                    awsS3OSSFileService.getUrl(safewordApplyDto.getIdcardPathHold()));
                    Constants.IMAGES_HTTP+safewordApplyDto.getIdcardPathHold());
        }
        return  Result.ok(page);
    }