2025-04-24 18:31:27 +08:00

29 lines
809 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}