Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiCateringEleOrderSyncModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

36 lines
947 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 Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KoubeiCateringEleOrderSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringEleOrderSyncModel : AopObject
{
/// <summary>
/// 饿了么数据回流action类型.包含ORDER_STATUSORDER_DELIVERY,ORDER_REFUND
/// </summary>
[JsonProperty("action")]
public string Action { get; set; }
/// <summary>
/// 支付宝用户id
/// </summary>
[JsonProperty("alipay_user_id")]
public string AlipayUserId { get; set; }
/// <summary>
/// 饿了么推送的数据类型json字符串.注意data是一个字符串类型,要把一串json作为字符串传入
/// </summary>
[JsonProperty("data")]
public string Data { get; set; }
/// <summary>
/// 数据推送来源,需要找业务PD申请
/// </summary>
[JsonProperty("source")]
public string Source { get; set; }
}
}