NewGaoKaoApi/PaymentSDK/AliPay/Domain/Matcher.cs

31 lines
849 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>
/// Matcher Data Structure.
/// </summary>
[Serializable]
public class Matcher : AopObject
{
/// <summary>
/// 身份证号码与user_id、mobile_no不能同时为空
/// </summary>
[XmlElement("identity_card")]
public string IdentityCard { get; set; }
/// <summary>
/// 手机号码与user_id、identity_card不能同时为空
/// </summary>
[XmlElement("mobile_no")]
public string MobileNo { get; set; }
/// <summary>
/// 支付宝用户id2088开头16位长度的字符串与mobile_no、identity_card不能同时为空
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}