Commit acd3df3f by HlQ

[fix] 修复合同同步的参数问题

1 parent f0380654
......@@ -429,7 +429,7 @@ public class ContractRunner {
.uri("/pro/v2/api/product/list")
.contentType(MediaType.APPLICATION_JSON)
.header("sign", SecureUtil.sha256(json1.toString() + token))
.body(json.toString())
.body(json1.toString())
.retrieve()
.body(JSONObject.class);
if (jobj1.getInt("code") != 1) {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!