接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,36 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// UserDetails Data Structure.
/// </summary>
[Serializable]
public class UserDetails : AopObject
{
/// <summary>
/// 用户变更手机号,替换旧的手机号
/// </summary>
[JsonProperty("user_change_mobile")]
public string UserChangeMobile { get; set; }
/// <summary>
/// 孩子家长的手机号
/// </summary>
[JsonProperty("user_mobile")]
public string UserMobile { get; set; }
/// <summary>
/// 张三
/// </summary>
[JsonProperty("user_name")]
public string UserName { get; set; }
/// <summary>
/// 孩子与家长的关系: 1、爸爸 2、妈妈 3、爷爷 4、奶奶 5、外公 6、外婆 7、家长
/// </summary>
[JsonProperty("user_relation")]
public string UserRelation { get; set; }
}
}