NewGaoKaoApi/PaymentSDK/AliPay/Domain/ApplySubAccountAndBindResul...

25 lines
607 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>
/// ApplySubAccountAndBindResultDTO Data Structure.
/// </summary>
[Serializable]
public class ApplySubAccountAndBindResultDTO : AopObject
{
/// <summary>
/// 受理单号
/// </summary>
[XmlElement("apply_no")]
public string ApplyNo { get; set; }
/// <summary>
/// 受理单状态申请成功后受理单状态为INIT
/// </summary>
[XmlElement("apply_status")]
public string ApplyStatus { get; set; }
}
}