初始提交
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// MerchantMenber Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class MerchantMenber : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 生日 yyyy-MM-dd
|
||||
/// </summary>
|
||||
[JsonProperty("birth")]
|
||||
public string Birth { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 手机号
|
||||
/// </summary>
|
||||
[JsonProperty("cell")]
|
||||
public string Cell { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 性别(男:MALE;女:FEMALE)
|
||||
/// </summary>
|
||||
[JsonProperty("gende")]
|
||||
public string Gende { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 姓名
|
||||
/// </summary>
|
||||
[JsonProperty("name")]
|
||||
public string Name { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user