using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// ContactInfoKt Data Structure.
///
[Serializable]
public class ContactInfoKt : AopObject
{
///
/// 联系人电子邮箱
///
[XmlElement("email")]
public string Email { get; set; }
///
/// 联系人身份证号
///
[XmlElement("id_card_no")]
public string IdCardNo { get; set; }
///
/// 联系人手机号
///
[XmlElement("mobile")]
public string Mobile { get; set; }
///
/// 联系人名字
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 联系人电话
///
[XmlElement("phone")]
public string Phone { get; set; }
///
/// 学校联系人业务标识枚举,表示联系人的职责。异议处理接口人:02; 关键联系人:06;数据反馈接口人:11;服务联动接口人:08
///
[XmlArray("tag")]
[XmlArrayItem("string")]
public List Tag { get; set; }
///
/// 联系人类型,取值范围:LEGAL_PERSON:法人;CONTROLLER:实际控制人;AGENT:代理人;OTHER:其他
///
[XmlElement("type")]
public string Type { get; set; }
}
}