AliPayOperationCancelEntity.cs
583 Bytes
namespace NCC.Extend.Entitys;
public class AliPayOperationCancelEntity
{
/// <summary>
/// 商户的授权资金订单号
/// </summary>
public string OutOrderNo { get; set; }
/// <summary>
/// 商户的授权资金操作流水号
/// </summary>
public string OutRequestNo { get; set; }
/// <summary>
/// 商户对本次撤销操作的附言描述
/// </summary>
public string Remark { get; set; } = "授权撤销";
public string CreditBizOrderId { get; set; }
//处理结果
public string HandleResult { get; set; }
}