From 579177ac64462d0fec885eb10af3097245134f80 Mon Sep 17 00:00:00 2001
From: zj <1772600164@qq.com>
Date: Tue, 02 Jun 2026 10:28:11 +0800
Subject: [PATCH] 1

---
 trading-order-admin/src/main/java/com/yami/trading/api/controller/ApiRealNameAuthContoller.java |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/trading-order-admin/src/main/java/com/yami/trading/api/controller/ApiRealNameAuthContoller.java b/trading-order-admin/src/main/java/com/yami/trading/api/controller/ApiRealNameAuthContoller.java
index 87cde23..3de2fe0 100644
--- a/trading-order-admin/src/main/java/com/yami/trading/api/controller/ApiRealNameAuthContoller.java
+++ b/trading-order-admin/src/main/java/com/yami/trading/api/controller/ApiRealNameAuthContoller.java
@@ -61,13 +61,13 @@
         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);
@@ -91,10 +91,10 @@
         }
 
         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());

--
Gitblit v1.9.3