|
@@ -13,22 +13,29 @@
|
|
|
public string msg { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 数据
|
|
|
+ /// 受理编号
|
|
|
/// </summary>
|
|
|
- public string data { get; set; }
|
|
|
+ public string AcceptCode { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 受理密码
|
|
|
+ /// </summary>
|
|
|
+ public string AcceptPwd { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 成功
|
|
|
/// </summary>
|
|
|
- /// <param name="data"></param>
|
|
|
+ /// <param name="OrderCode"></param>
|
|
|
+ /// <param name="OrderPwd"></param>
|
|
|
/// <param name="description"></param>
|
|
|
/// <returns></returns>
|
|
|
- public static DeReponse Success(string data, string? description = "")
|
|
|
+ public static DeReponse Success(string OrderCode,string OrderPwd, string? description = "")
|
|
|
{
|
|
|
return new DeReponse
|
|
|
{
|
|
|
code = "1",
|
|
|
- data = data,
|
|
|
+ AcceptCode = OrderCode,
|
|
|
+ AcceptPwd= OrderPwd,
|
|
|
msg = (description ?? "您已成功提交数据!")
|
|
|
};
|
|
|
}
|
|
@@ -44,6 +51,8 @@
|
|
|
return new DeReponse
|
|
|
{
|
|
|
code = code,
|
|
|
+ AcceptCode = "",
|
|
|
+ AcceptPwd = "",
|
|
|
msg = (description ?? "接口调用失败!")
|
|
|
};
|
|
|
}
|