using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CertInfo Data Structure. /// [Serializable] public class CertInfo : AopObject { /// /// 代发时商家上传的收款方证件号码 biz_scene=LOCAL时忽略该参数。 /// [XmlElement("cert_no")] public string CertNo { get; set; } /// /// 代发时商家上传的收款方证件类型。 biz_scene=LOCAL时忽略该参数。 /// [XmlElement("cert_type")] public string CertType { get; set; } } }