55 lines
1.6 KiB
C#
55 lines
1.6 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayUserAccountBindingSyncModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayUserAccountBindingSyncModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 支付宝用户ID
|
||
/// </summary>
|
||
[XmlElement("alipay_user_id")]
|
||
public string AlipayUserId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建时间
|
||
/// </summary>
|
||
[XmlElement("create_time")]
|
||
public string CreateTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 版本号,大于等于0
|
||
/// </summary>
|
||
[XmlElement("data_version")]
|
||
public long DataVersion { get; set; }
|
||
|
||
/// <summary>
|
||
/// 淘系用户ID
|
||
/// </summary>
|
||
[XmlElement("havana_user_id")]
|
||
public long HavanaUserId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 修改时间
|
||
/// </summary>
|
||
[XmlElement("modify_time")]
|
||
public string ModifyTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 淘宝绑定关系领域枚举: TAOBAO("0", "淘宝"), CBU("1", "1688(CBU)"), ALIYUN_LOGIN("2", "阿里云(免登)"), ALIYUN_CERTIFY("3", "阿里云(认证)")
|
||
/// </summary>
|
||
[XmlElement("realm")]
|
||
public string Realm { get; set; }
|
||
|
||
/// <summary>
|
||
/// 淘宝绑定关系状态枚举: UNBINDING("0", "未绑定"), BINDING("1", "已绑定")
|
||
/// </summary>
|
||
[XmlElement("status")]
|
||
public string Status { get; set; }
|
||
}
|
||
}
|