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

58 lines
1.7 KiB
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 Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayPointOrderGetResponse.
/// </summary>
public class AlipayPointOrderGetResponse : AopResponse
{
/// <summary>
/// 支付宝集分宝发放流水号
/// </summary>
[JsonProperty("alipay_order_no")]
public string AlipayOrderNo { get; set; }
/// <summary>
/// 发放时间格式yyyy-MM-dd HH:mm:ss
/// </summary>
[JsonProperty("create_time")]
public string CreateTime { get; set; }
/// <summary>
/// 支付宝集分宝发放者用户ID
/// </summary>
[JsonProperty("dispatch_user_id")]
public string DispatchUserId { get; set; }
/// <summary>
/// 向用户展示集分宝发放备注
/// </summary>
[JsonProperty("memo")]
public string Memo { get; set; }
/// <summary>
/// isv提供的发放号订单号由数字和字母组成最大长度为32为需要保证每笔发放的唯一性支付宝会对该参数做唯一性控制。如果使用同样的订单号支付宝将返回订单号已经存在的错误
/// </summary>
[JsonProperty("merchant_order_no")]
public string MerchantOrderNo { get; set; }
/// <summary>
/// 集分宝发放流水状态I表示处理中S表示成功F表示失败
/// </summary>
[JsonProperty("order_status")]
public string OrderStatus { get; set; }
/// <summary>
/// 发放集分宝的数量
/// </summary>
[JsonProperty("point_count")]
public long PointCount { get; set; }
/// <summary>
/// 支付宝集分宝接收者用户ID
/// </summary>
[JsonProperty("receive_user_id")]
public string ReceiveUserId { get; set; }
}
}