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

---
 src/main/java/com/nq/enums/EStockType.java |   69 +++++++++++++++++++++++-----------
 1 files changed, 46 insertions(+), 23 deletions(-)

diff --git a/src/main/java/com/nq/enums/EStockType.java b/src/main/java/com/nq/enums/EStockType.java
index 2b965f2..91ffe4b 100644
--- a/src/main/java/com/nq/enums/EStockType.java
+++ b/src/main/java/com/nq/enums/EStockType.java
@@ -10,17 +10,16 @@
 public enum EStockType {
 
 
-    IN("IN","印度股票","14", PropertiesUtil.getProperty("IN_HTTP_API"),PropertiesUtil.getProperty("IN_KEY")),
-    US("US","美国股票","5",PropertiesUtil.getProperty("US_HTTP_API"),PropertiesUtil.getProperty("US_KEY")),
-    HK("HK","香港股票","39",PropertiesUtil.getProperty("HK_HTTP_API"),PropertiesUtil.getProperty("HK_KEY")),
-    MAS("MAS","马来西亚股票","42",PropertiesUtil.getProperty("MAS_HTTP_API"),PropertiesUtil.getProperty("MAS_KEY")),
-    TH("TH","泰国股票","41",PropertiesUtil.getProperty("TH_HTTP_API"),PropertiesUtil.getProperty("TH_KEY")),
-
-
-
-    HG("HG","韩国股票","11",PropertiesUtil.getProperty("HG_HTTP_API"),PropertiesUtil.getProperty("TG_KEY")),
-
-    SZHB("SZHB","数字货币","41",PropertiesUtil.getProperty("SZHB_HTTP_API"),PropertiesUtil.getProperty("SZHB_KEY"));
+//
+//    US("US","美国股票","5",PropertiesUtil.getProperty("US_HTTP_API"),PropertiesUtil.getProperty("US_KEY"),"USD","$"),
+//    HK("HK","香港股票","39",PropertiesUtil.getProperty("HK_HTTP_API"),PropertiesUtil.getProperty("HK_KEY"),"HKD","HK$"),
+//    MAS("MAS","马来西亚股票","42",PropertiesUtil.getProperty("MAS_HTTP_API"),PropertiesUtil.getProperty("MAS_KEY"),"MYR","RM"),
+//
+//    IN("IN","印度股票","14", PropertiesUtil.getProperty("JS_IN_HTTP_URL"),PropertiesUtil.getProperty("JS_IN_KEY"),"INR","₹");
+    JP("JP","日本股票","35", PropertiesUtil.getProperty("JP_HTTP_API"),PropertiesUtil.getProperty("JP_KEY"),"JPY","¥");
+//    TH("TH","泰国股票","41",PropertiesUtil.getProperty("TH_HTTP_API"),PropertiesUtil.getProperty("TH_KEY")),
+//    HG("HG","韩国股票","11",PropertiesUtil.getProperty("HG_HTTP_API"),PropertiesUtil.getProperty("HG_KEY")),
+//    SZHB("SZHB","数字货币","41",PropertiesUtil.getProperty("SZHB_HTTP_API"),PropertiesUtil.getProperty("SZHB_KEY"));
     private String code;
     private String typeDesc;
     public String contryId;
@@ -28,29 +27,37 @@
     public String stockUrl;
     public  String stockKey;
 
+    private String symbol;
 
-    EStockType(String code, String typeDesc, String contryId, String stockUrl, String stockKey) {
+    private String symbol1;
+
+
+    EStockType(String code, String typeDesc, String contryId, String stockUrl, String stockKey,String  symbol,String symbol1) {
         this.code = code;
         this.typeDesc = typeDesc;
         this.contryId = contryId;
         this.stockUrl = stockUrl;
         this.stockKey = stockKey;
+        this.symbol = symbol;
+        this.symbol1 = symbol1;
     }
 
     public static EStockType getEStockTypeByCode(String code){
-        if(EStockType.US.getCode().equals(code)){
-            return US;
-        }else if(EStockType.IN.getCode().equals(code)){
-            return  IN;
-        }else if(EStockType.HK.getCode().equals(code)){
-            return  HK;
-        }else if(EStockType.MAS.getCode().equals(code)){
-            return  MAS;
-        }else if(EStockType.SZHB.getCode().equals(code)){
-            return  SZHB;
+        if(EStockType.JP.getCode().equals(code)){
+            return JP;
+
         }else {
-            return TH;
+            return null;
         }
+//        else if(EStockType.HK.getCode().equals(code)){
+//            return  HK;
+//        }else if(EStockType.MAS.getCode().equals(code)){
+//            return  MAS;
+//        }else if(EStockType.IN.getCode().equals(code)){
+//            return  IN;
+//        }else{
+//            return  MAS;
+//        }
     }
 
     public String getContryId() {
@@ -69,6 +76,22 @@
         return code;
     }
 
+    public String getSymbol() {
+        return symbol;
+    }
+
+    public void setSymbol(String symbol) {
+        this.symbol = symbol;
+    }
+
+    public String getSymbol1() {
+        return symbol1;
+    }
+
+    public void setSymbol1(String symbol1) {
+        this.symbol1 = symbol1;
+    }
+
     public String getTypeDesc() {
         return typeDesc;
     }

--
Gitblit v1.9.3