|
@@ -54,7 +54,7 @@ namespace PTMedicalInsurance.Business
|
|
|
protected CallResult Exception(int code, string errMsg,string param)
|
|
|
{
|
|
|
outParam = JsonHelper.setExceptionJson(code, errMsg, param).ToString();
|
|
|
- return new CallResult(code, errMsg, outParam);
|
|
|
+ return new CallResult(code, errMsg, outParam,param);
|
|
|
}
|
|
|
protected CallResult Exception(string errMsg, string param)
|
|
|
{
|
|
@@ -64,7 +64,7 @@ namespace PTMedicalInsurance.Business
|
|
|
protected CallResult IrisReturn(string msg,JObject obj)
|
|
|
{
|
|
|
outParam = JsonHelper.setIrisReturnValue(0, msg, obj).ToString();
|
|
|
- return new CallResult(0, msg, outParam);
|
|
|
+ return new CallResult(0, msg, outParam,obj);
|
|
|
}
|
|
|
|
|
|
/// <summary>
|