37 lines
1.0 KiB
C#
37 lines
1.0 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// KoubeiCateringEleOrderSyncModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KoubeiCateringEleOrderSyncModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 饿了么数据回流action类型.包含ORDER_STATUS,ORDER_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; }
|
||
}
|
||
}
|