NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserUseridBymobileQue...

25 lines
759 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>
/// AlipayUserUseridBymobileQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserUseridBymobileQueryModel : AopObject
{
/// <summary>
/// 手机号码大陆的目前是11位手机号码海外的是国家码、横杠和号码如1-123123123
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 用户类型1 - 企业类型; 2 - 个人类型。 按照所传内容进行过滤,如果不传则不过滤。
/// </summary>
[XmlElement("user_type")]
public long UserType { get; set; }
}
}