using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MybankCreditSceneprodInstAuthConsultModel Data Structure. /// [Serializable] public class MybankCreditSceneprodInstAuthConsultModel : AopObject { /// /// 需要咨询的内容信息,不填默认是机构是否准入咨询 /// [XmlElement("consult_content")] public string ConsultContent { get; set; } /// /// 机构码,机构入驻时网商分配 /// [XmlElement("org_code")] public string OrgCode { get; set; } /// /// 网商分配的产品码 /// [XmlElement("product_code")] public string ProductCode { get; set; } } }