java110 лет назад: 6
Родитель
Сommit
a2a3f579df

+ 1 - 1
service-front/src/main/java/com/java110/front/smo/wechatGateway/impl/WechatGatewaySMOImpl.java

@@ -44,7 +44,7 @@ public class WechatGatewaySMOImpl extends AbstractFrontServiceSMO implements IWe
     public ResponseEntity<String>
     gateway(IPageData pd) throws Exception {
 
-        JSONObject paramIn = JSONObject.parseObject(JSONObject.toJSONString(pd.getReqData()));
+        JSONObject paramIn = JSONObject.parseObject(pd.getReqData());
         Assert.hasKeyAndValue(paramIn, "fromUserName", "请求报文中未包含fromUserName");
         Assert.hasKeyAndValue(paramIn, "toUserName", "请求报文中未包含toUserName");