NewGaoKaoApi/PaymentSDK/AliPay/Domain/PreOrderResult.cs

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