新版仿ok交易所-后端
1
zj
2025-07-10 f15406ac788fb4e17a630c4d48129943af89fb9c
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);
    }