From 8522e469e00e1cf6c0410165b0f76c806c13ca83 Mon Sep 17 00:00:00 2001
From: Pu Zhibing <393733352@qq.com>
Date: 星期六, 16 八月 2025 09:17:04 +0800
Subject: [PATCH] 合并代码

---
 UserQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/PushUtil.java |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/UserQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/PushUtil.java b/UserQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/PushUtil.java
index c01ceef..8774fb2 100644
--- a/UserQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/PushUtil.java
+++ b/UserQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/PushUtil.java
@@ -84,6 +84,7 @@
 		params.put("msg", jsonObject.toJSONString());
 		params.put("id", uid);
 		params.put("type", type);
+		params.put("bussinessType", "dache");
 		post.form(params);
 		HttpResponse execute = post.execute();
 		if (200 != execute.getStatus()) {
@@ -122,6 +123,7 @@
 		params.put("msg", jsonObject.toJSONString());
 		params.put("id", uid);
 		params.put("type", type);
+		params.put("bussinessType", "dache");
 		post.form(params);
 		HttpResponse execute = post.execute();
 		if (200 != execute.getStatus()) {
@@ -246,7 +248,7 @@
 		}
 		
 		//计算预计距离和剩余时间
-		String value = (String) redisTemplate.opsForValue().get("dache:DRIVER" + String.valueOf(driverId));
+		String value = (String) redisTemplate.opsForValue().get("dache_DRIVER" + String.valueOf(driverId));
 		if (null == value || "".equals(value)) {
 			return;
 		}
@@ -315,6 +317,7 @@
 		params.put("msg", msg.toJSONString());
 		params.put("id", jsonObject.getIntValue("id"));
 		params.put("type", jsonObject.getIntValue("type"));
+		params.put("bussinessType", "dache");
 		post.form(params);
 		HttpResponse execute = post.execute();
 		if (200 != execute.getStatus()) {
@@ -364,6 +367,7 @@
 		params.put("msg", msg.toJSONString());
 		params.put("id", id);
 		params.put("type", type);
+		params.put("bussinessType", "dache");
 		post.form(params);
 		HttpResponse execute = post.execute();
 		if (200 != execute.getStatus()) {
@@ -404,6 +408,7 @@
 		params.put("msg", jsonObject.toJSONString());
 		params.put("id", uid);
 		params.put("type", type);
+		params.put("bussinessType", "dache");
 		post.form(params);
 		HttpResponse execute = post.execute();
 		if (200 != execute.getStatus()) {

--
Gitblit v1.7.1