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

36 lines
820 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>
/// PreOrderResult Data Structure.
/// </summary>
[Serializable]
public class PreOrderResult : AopObject
{
/// <summary>
/// 应用唯一标识
/// </summary>
[JsonProperty("app_id")]
public string AppId { get; set; }
/// <summary>
/// 商户订单号,64个字符以内、只能包含字母、数字、下划线需保证在商户端不重复
/// </summary>
[JsonProperty("out_trade_no")]
public string OutTradeNo { get; set; }
/// <summary>
/// 错误描述
/// </summary>
[JsonProperty("result_code")]
public string ResultCode { get; set; }
/// <summary>
/// 校验是否成功
/// </summary>
[JsonProperty("success")]
public bool Success { get; set; }
}
}