Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ContactInfo.cs

48 lines
1.0 KiB
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ContactInfo Data Structure.
/// </summary>
[Serializable]
public class ContactInfo : AopObject
{
/// <summary>
/// 电子邮箱
/// </summary>
[JsonProperty("email")]
public string Email { get; set; }
/// <summary>
/// 身份证号
/// </summary>
[JsonProperty("id_card_no")]
public string IdCardNo { get; set; }
/// <summary>
/// 手机号
/// </summary>
[JsonProperty("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 联系人名字
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// 电话
/// </summary>
[JsonProperty("phone")]
public string Phone { get; set; }
/// <summary>
/// 联系人类型取值范围LEGAL_PERSON法人CONTROLLER实际控制人AGENT代理人OTHER其他
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
}
}