NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringEleOrderSyncM...

37 lines
1.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiCateringEleOrderSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringEleOrderSyncModel : AopObject
{
/// <summary>
/// 饿了么数据回流action类型.包含ORDER_STATUSORDER_DELIVERY,ORDER_REFUND
/// </summary>
[XmlElement("action")]
public string Action { get; set; }
/// <summary>
/// 支付宝用户id
/// </summary>
[XmlElement("alipay_user_id")]
public string AlipayUserId { get; set; }
/// <summary>
/// 饿了么推送的数据类型json字符串.注意data是一个字符串类型,要把一串json作为字符串传入
/// </summary>
[XmlElement("data")]
public string Data { get; set; }
/// <summary>
/// 数据推送来源,需要找业务PD申请
/// </summary>
[XmlElement("source")]
public string Source { get; set; }
}
}