From f15406ac788fb4e17a630c4d48129943af89fb9c Mon Sep 17 00:00:00 2001
From: zj <1772600164@qq.com>
Date: Thu, 10 Jul 2025 19:27:06 +0800
Subject: [PATCH] 1

---
 trading-order-service/src/main/java/com/yami/trading/service/impl/UserSafewordApplyServiceImpl.java |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/trading-order-service/src/main/java/com/yami/trading/service/impl/UserSafewordApplyServiceImpl.java b/trading-order-service/src/main/java/com/yami/trading/service/impl/UserSafewordApplyServiceImpl.java
index 21edc59..dd3b1f0 100644
--- a/trading-order-service/src/main/java/com/yami/trading/service/impl/UserSafewordApplyServiceImpl.java
+++ b/trading-order-service/src/main/java/com/yami/trading/service/impl/UserSafewordApplyServiceImpl.java
@@ -8,6 +8,7 @@
 import com.yami.trading.bean.model.User;
 import com.yami.trading.bean.model.UserSafewordApply;
 import com.yami.trading.bean.user.dto.UserSafewordApplyDto;
+import com.yami.trading.common.constants.Constants;
 import com.yami.trading.common.constants.TipConstants;
 import com.yami.trading.common.domain.BaseEntity;
 import com.yami.trading.common.exception.YamiShopBindException;
@@ -93,18 +94,18 @@
         String idcard_path_hold_path = "";
 
         if (!StringUtils.isNullOrEmpty(apply.getIdcardPathFront())) {
-            idcard_path_front_path = awsS3OSSFileService.getUrl(apply.getIdcardPathFront());
+            idcard_path_front_path = Constants.IMAGES_HTTP+apply.getIdcardPathFront();
         }
         result.put("idcard_path_front_path", idcard_path_front_path);
 
         if (!StringUtils.isNullOrEmpty(apply.getIdcardPathBack())) {
-            idcard_path_back_path =awsS3OSSFileService.getUrl(apply.getIdcardPathBack());
+            idcard_path_back_path =Constants.IMAGES_HTTP+apply.getIdcardPathBack();
         }
 
         result.put("idcard_path_back_path", idcard_path_back_path);
 
         if (!StringUtils.isNullOrEmpty(apply.getIdcardPathHold())) {
-            idcard_path_hold_path = awsS3OSSFileService.getUrl(apply.getIdcardPathHold());
+            idcard_path_hold_path = Constants.IMAGES_HTTP+apply.getIdcardPathHold();
         }
         result.put("idcard_path_hold_path", idcard_path_hold_path);
 

--
Gitblit v1.9.3