初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// CardUserInfo Data Structure.
/// </summary>
[Serializable]
public class CardUserInfo : AopObject
{
/// <summary>
/// 用户唯一标识, 根据user_id_type类型来定 目前暂支持支付宝userId 支付宝userId说明支付宝用户号是以2088开头的16位纯数字组成
/// </summary>
[JsonProperty("user_uni_id")]
public string UserUniId { get; set; }
/// <summary>
/// ID类型UID 即传值UID即可
/// </summary>
[JsonProperty("user_uni_id_type")]
public string UserUniIdType { get; set; }
}
}