|
@@ -741,16 +741,15 @@ namespace PTMedicalInsurance
|
|
|
//设置返回值,错误信息
|
|
|
string errMsg, rtnResult = "", outParam;
|
|
|
|
|
|
- JObject joParam = JObject.Parse(InParam);
|
|
|
- if (joParam.ContainsKey("callType") && joParam.ContainsKey("hiDocSn"))
|
|
|
+ JObject joParamMobile = JObject.Parse(InParam);
|
|
|
+ if (joParamMobile.ContainsKey("callType") && joParamMobile.ContainsKey("hiDocSn"))
|
|
|
{
|
|
|
//移动支付回调[6302]交易
|
|
|
MobilePay mp = new MobilePay();
|
|
|
- mp.ConfirmResult(joParam, out rtnResult);
|
|
|
+ mp.ConfirmResult(joParamMobile, out rtnResult);
|
|
|
return rtnResult;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
try
|
|
|
{
|
|
|
//解析入参
|