using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ZolozIdentificationCustomerCertifyQueryModel Data Structure.
///
[Serializable]
public class ZolozIdentificationCustomerCertifyQueryModel : AopObject
{
///
/// 业务单据号,用于核对和排查
///
[XmlElement("biz_id")]
public string BizId { get; set; }
///
/// zimId,用于查询认证结果
///
[XmlElement("zim_id")]
public string ZimId { get; set; }
}
}