using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// Informant Data Structure.
///
[Serializable]
public class Informant : AopObject
{
///
/// 姓名,须与证件上名称一致
///
[XmlElement("cert_name")]
public string CertName { get; set; }
///
/// 报案人证件号码
///
[XmlElement("cert_no")]
public string CertNo { get; set; }
///
/// 证件类型,特殊可选,该字段需和证件号、名称同时有值或同时为空 枚举: IDENTITY_CARD:身份证 备注:目前仅支持身份证类型
///
[XmlElement("cert_type")]
public string CertType { get; set; }
///
/// 手机号
///
[XmlElement("mobile_no")]
public string MobileNo { get; set; }
}
}