mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 18:48:10 +08:00
feat(wxapi): 封装公众平台、开放平台接口
This commit is contained in:
@@ -0,0 +1,84 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Events
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 EVENT.ORDER_STATUS_FINANCE_SUCC 事件的数据。</para>
|
||||
/// <para>REF: https://developers.weixin.qq.com/doc/offiaccount/Cards_and_Offer/Coupons_Vouchers_and_Cards_Event_Push_Messages.html#11 </para>
|
||||
/// </summary>
|
||||
public class OrderStatusFinanceSuccessEvent : WechatApiEvent, WechatApiEvent.Types.IXmlSerializable
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置订单号。
|
||||
/// </summary>
|
||||
[System.Xml.Serialization.XmlElement("OrderId")]
|
||||
public string OrderId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置订单类型。
|
||||
/// </summary>
|
||||
[System.Xml.Serialization.XmlElement("OrderType")]
|
||||
public string OrderType { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置订单状态。
|
||||
/// </summary>
|
||||
[System.Xml.Serialization.XmlElement("Status")]
|
||||
public string OrderStatus { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置订单生成时间戳。
|
||||
/// </summary>
|
||||
[System.Xml.Serialization.XmlElement("CreateOrderTime")]
|
||||
public long OrderCreateTimestamp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置订单支付成功时间戳。
|
||||
/// </summary>
|
||||
[System.Xml.Serialization.XmlElement("PayFinishTime")]
|
||||
public long OrderPayTimestamp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置支付方式。
|
||||
/// </summary>
|
||||
[System.Xml.Serialization.XmlElement("Desc", IsNullable = true)]
|
||||
public string? Description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置剩余免费券点数量。
|
||||
/// </summary>
|
||||
[System.Xml.Serialization.XmlElement("FreeCoinCount")]
|
||||
public int FreeCoinCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置剩余付费券点数量。
|
||||
/// </summary>
|
||||
[System.Xml.Serialization.XmlElement("PayCoinCount")]
|
||||
public int PayCoinCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置本次变动的免费券点数量。
|
||||
/// </summary>
|
||||
[System.Xml.Serialization.XmlElement("RefundFreeCoinCount")]
|
||||
public int RefundFreeCoinCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置本次变动的付费券点数量。
|
||||
/// </summary>
|
||||
[System.Xml.Serialization.XmlElement("RefundPayCoinCount")]
|
||||
public int RefundPayCoinCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置所开收据的详情。
|
||||
/// </summary>
|
||||
[System.Xml.Serialization.XmlElement("ReceiptInfo", IsNullable = true)]
|
||||
public string? Receipt { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置系统备注。
|
||||
/// </summary>
|
||||
[System.Xml.Serialization.XmlElement("Memo", IsNullable = true)]
|
||||
public string? Remark { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user