|
|
@@ -302,7 +302,11 @@ public class LeYunFuController {
|
|
|
String base64encodedString = Base64.getEncoder().encodeToString(paramsStr.getBytes("utf-8"));
|
|
|
System.out.println("Base64 编码字符串 (URL) :" + base64encodedString);
|
|
|
|
|
|
- return new Result(true, URLEncoder.encode(base64encodedString, "utf-8"));
|
|
|
+ Map<String, String> result = new TreeMap<>();
|
|
|
+ result.put("data", URLEncoder.encode(base64encodedString, "utf-8"));
|
|
|
+ result.put("id", wxpayTemp.getId() + "");
|
|
|
+
|
|
|
+ return new Result(true, result);
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
logger.error("leyunfu下单失败", e);
|