From 010ef2a907e66efd4702443c06cdd18f8a7ffa5b Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期三, 30 十月 2024 14:08:53 +0800
Subject: [PATCH] IP归属地查询接口集成

---
 src/main/java/com/yeshi/buwan/vo/ad/AdConfigTypeVO.java |   27 ++++++++++++++++-----------
 1 files changed, 16 insertions(+), 11 deletions(-)

diff --git a/src/main/java/com/yeshi/buwan/vo/ad/AdConfigTypeVO.java b/src/main/java/com/yeshi/buwan/vo/ad/AdConfigTypeVO.java
index c7bc014..52313be 100644
--- a/src/main/java/com/yeshi/buwan/vo/ad/AdConfigTypeVO.java
+++ b/src/main/java/com/yeshi/buwan/vo/ad/AdConfigTypeVO.java
@@ -7,26 +7,28 @@
  * @date 2023/4/12 13:28
  */
 public enum AdConfigTypeVO {
-    splash("ad_splash_config","splash","splash"),
-    playVideoPre("ad_play_video_pre","videoPlayPre","play_video_pre"),
-    exitApp("ad_exit_app","exitApp","exit_app"),
-    videoDetailFullVideo("ad_video_detail_full_video","videoDetailFullVideo","video_detail_full_video"),
-    videoSearch("ad_video_search","videoSearch","video_search"),
-    pptvNoAdReward("pptv_no_ad_reward","pptvNoAdReward","pptv_no_ad_reward"),
-    splashHotStart("ad_splash_hot_start","splashHotStart","splash_hot_start"),
-    homeInterstitial("home_ad_interstitial","homeInterstitial","home_interstitial"),
-    exitFullVideo("ad_exit_app_fullvideo","exitAppFullvideo","exit_app_fullvideo"),
-    other("ad_other","other","other");
+    splash("ad_splash_config","splash","splash", "寮�灞�"),
+    playVideoPre("ad_play_video_pre","videoPlayPre","play_video_pre","瑙嗛鎾斁璐寸墖"),
+    exitApp("ad_exit_app","exitApp","exit_app","閫�鍑哄簲鐢�"),
+    videoDetailFullVideo("ad_video_detail_full_video","videoDetailFullVideo","video_detail_full_video", "瑙嗛鎾斁寮瑰嚭"),
+    videoSearch("ad_video_search","videoSearch","video_search", "瑙嗛鎼滅储"),
+    pptvNoAdReward("pptv_no_ad_reward","pptvNoAdReward","pptv_no_ad_reward", "PPTV鍘诲箍鍛婃縺鍔�"),
+    splashHotStart("ad_splash_hot_start","splashHotStart","splash_hot_start","鐑惎鍔ㄥ紑灞�"),
+    homeInterstitial("home_ad_interstitial","homeInterstitial","home_interstitial","棣栭〉鎻掑睆"),
+    exitFullVideo("ad_exit_app_fullvideo","exitAppFullvideo","exit_app_fullvideo","閫�鍑哄簲鐢ㄥ叏灞�"),
+    other("ad_other","other","other","鍏朵粬浣嶇疆");
 
     private String dbKey;
     private String voKey;
     //閰嶇疆鏂囦欢閲岄潰鐨勯敭
     private String settingKey;
+    private String name;
 
-    private AdConfigTypeVO(String dbKey, String voKey,String settingKey) {
+    private AdConfigTypeVO(String dbKey, String voKey,String settingKey,String name) {
         this.dbKey = dbKey;
         this.voKey = voKey;
         this.settingKey = settingKey;
+        this.name = name;
     }
 
     public String getDbKey(){
@@ -41,4 +43,7 @@
         return settingKey;
     }
 
+    public String getName() {
+        return name;
+    }
 }

--
Gitblit v1.8.0