NewGaoKaoApi/PaymentSDK/AliPay/Domain/OperatorAccountVO.cs

25 lines
738 B
C#
Raw Permalink 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>
/// OperatorAccountVO Data Structure.
/// </summary>
[Serializable]
public class OperatorAccountVO : AopObject
{
/// <summary>
/// 关联账号ID
/// </summary>
[XmlElement("account_id")]
public string AccountId { get; set; }
/// <summary>
/// 关联账号类型。枚举值参考OperatorRelAccountTypeEnum account_type=01则account_id为支付宝userId account_type=02则account_id为钉钉账号id account_type=03则account_id为支付宝oid
/// </summary>
[XmlElement("account_type")]
public string AccountType { get; set; }
}
}