忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,54 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserDetail Data Structure.
/// </summary>
[Serializable]
public class AlipayUserDetail : AopObject
{
/// <summary>
/// 支付宝用户userId
/// </summary>
[JsonProperty("alipay_user_id")]
public string AlipayUserId { get; set; }
/// <summary>
/// 是否通过实名认证
/// </summary>
[JsonProperty("certified")]
public bool Certified { get; set; }
/// <summary>
/// 支付宝登录号
/// </summary>
[JsonProperty("logon_id")]
public string LogonId { get; set; }
/// <summary>
/// 真实姓名
/// </summary>
[JsonProperty("real_name")]
public string RealName { get; set; }
/// <summary>
/// 性别。可选值:m(男),f(女)
/// </summary>
[JsonProperty("sex")]
public string Sex { get; set; }
/// <summary>
/// 用户状态。可选:normal(正常), supervise (监管),delete(注销)
/// </summary>
[JsonProperty("user_status")]
public string UserStatus { get; set; }
/// <summary>
/// 用户类型。可选personal个人company公司
/// </summary>
[JsonProperty("user_type")]
public string UserType { get; set; }
}
}