using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayGongyiUserInfoTest Data Structure.
///
[Serializable]
public class AlipayGongyiUserInfoTest : AopObject
{
///
/// 地址信息
///
[XmlElement("address")]
public AlipayGongyiAddressTest Address { get; set; }
///
/// 10
///
[XmlElement("age")]
public long Age { get; set; }
///
/// 1912-12-12
///
[XmlElement("birthday")]
public string Birthday { get; set; }
///
/// 上海,杭州
///
[XmlArray("citys")]
[XmlArrayItem("string")]
public List Citys { get; set; }
///
/// 1001
///
[XmlElement("code")]
public string Code { get; set; }
///
/// zhangsan
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 学校地址列表
///
[XmlArray("school_list")]
[XmlArrayItem("alipay_gongyi_address_test")]
public List SchoolList { get; set; }
}
}