37 lines
815 B
C#
37 lines
815 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// MerchantMenber Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class MerchantMenber : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 生日 yyyy-MM-dd
|
||
/// </summary>
|
||
[XmlElement("birth")]
|
||
public string Birth { get; set; }
|
||
|
||
/// <summary>
|
||
/// 手机号
|
||
/// </summary>
|
||
[XmlElement("cell")]
|
||
public string Cell { get; set; }
|
||
|
||
/// <summary>
|
||
/// 性别(男:MALE;女:FEMALE)
|
||
/// </summary>
|
||
[XmlElement("gende")]
|
||
public string Gende { get; set; }
|
||
|
||
/// <summary>
|
||
/// 姓名
|
||
/// </summary>
|
||
[XmlElement("name")]
|
||
public string Name { get; set; }
|
||
}
|
||
}
|