From cbc307682c0ca48d59e7b539d6a2ae58d49cabe1 Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期三, 20 八月 2025 22:33:02 +0800
Subject: [PATCH] refactor(driver): 重构司机端收入查询逻辑

---
 DriverQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/qianyuntong/QianYunTongConfig.java |   15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/DriverQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/qianyuntong/QianYunTongConfig.java b/DriverQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/qianyuntong/QianYunTongConfig.java
index 4958b9e..9da997e 100644
--- a/DriverQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/qianyuntong/QianYunTongConfig.java
+++ b/DriverQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/qianyuntong/QianYunTongConfig.java
@@ -62,6 +62,10 @@
 	 * 向UAAS服务请求到的secret_key
 	 */
 	private String secretKey;
+	/**
+	 * 场景编号
+	 */
+	String sceneId;
 	
 	
 	public QianYunTongConfig getQianYunTongConfig() {
@@ -77,32 +81,35 @@
 			this.setAccount("d8bef0a04db511f0b79d01a3e2b7587e");
 			this.setAccessKey("TYMFTFD5SIIT15DCCUD7");
 			this.setSecretKey("AoI1dkH3yoAvXoaQlREO3ed9mwQJFluLTliS9T1z");
+			this.sceneId = "1948289607125864448";
 		}
 		if("test".equals(activeProfile)){
 			this.setAppkey("10001104");
-			this.setPrivateKeyPath("/root/server/app/key/private_key_test.pem");
+			this.setPrivateKeyPath("/etraffic/server/private_key_test.pem");
 			this.setUserName("xiaofei");
 			this.setStatus("1");
 			this.setApiUrl("https://test-zhongtai.stqcloud.com:10070");
 			this.setBucketName("bucuTest0625");
 			this.setAppId("wxcc3c9058e2b294db");
-			this.setEndPoint("http://119.4.112.68:27741/v1");
+			this.setEndPoint("http://10.30.52.45:27741/v1");
 			this.setAccount("d8bef0a04db511f0b79d01a3e2b7587e");
 			this.setAccessKey("TYMFTFD5SIIT15DCCUD7");
 			this.setSecretKey("AoI1dkH3yoAvXoaQlREO3ed9mwQJFluLTliS9T1z");
+			this.sceneId = "1948289607125864448";
 		}
 		if("prod".equals(activeProfile)){
 			this.setAppkey("10001104");
-			this.setPrivateKeyPath("/root/server/app/key/private_key.pem");
+			this.setPrivateKeyPath("/etraffic/server/private_key.pem");
 			this.setUserName("xiwang");
 			this.setStatus("1");
 			this.setApiUrl("http://jjzhongtai.stqcloud.com:10010");
 			this.setBucketName("qyt20250702");
 			this.setAppId("wxcc3c9058e2b294db");
-			this.setEndPoint("http://119.4.112.68:27741/v1");
+			this.setEndPoint("http://10.30.52.45:27741/v1");
 			this.setAccount("d8bef0a04db511f0b79d01a3e2b7587e");
 			this.setAccessKey("TYMFTFD5SIIT15DCCUD7");
 			this.setSecretKey("AoI1dkH3yoAvXoaQlREO3ed9mwQJFluLTliS9T1z");
+			this.sceneId = "";
 		}
 		return this;
 	}

--
Gitblit v1.7.1