29 lines
809 B
C#
29 lines
809 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Infrastructure.PayModels
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 自定义通知类
|
|||
|
/// </summary>
|
|||
|
public class MyNotify
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 返回状态码。0:成功,!0:失败。通信标识,非交易标识,交易是否成功需要查看Wolf.ExternalService.CMBPay.Common.NotifyBase.ResultCode来判断
|
|||
|
/// </summary>
|
|||
|
public string Status { get; set; }
|
|||
|
/// <summary>
|
|||
|
///业务结果。0:成功,!0:失败。
|
|||
|
/// </summary>
|
|||
|
public string ResultCode { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 平台订单号
|
|||
|
/// </summary>
|
|||
|
public string TransactionId { get; set; }
|
|||
|
}
|
|||
|
}
|