using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayPcreditHuabeiSelleradmitAdmittanceQueryModel Data Structure. /// [Serializable] public class AlipayPcreditHuabeiSelleradmitAdmittanceQueryModel : AopObject { /// /// 来源系统 /// [XmlElement("from_app")] public string FromApp { get; set; } /// /// 合作机构的支付宝id /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// 收款方的支付宝id /// [XmlElement("payee_alipay_user_id")] public string PayeeAlipayUserId { get; set; } /// /// 请求标识 /// [XmlElement("request_id")] public string RequestId { get; set; } /// /// 准入查询场景 /// [XmlElement("seller_admit_scene")] public string SellerAdmitScene { get; set; } /// /// 摊位id /// [XmlElement("stall_code")] public string StallCode { get; set; } /// /// 二级商户的id /// [XmlElement("sub_merchant_id")] public string SubMerchantId { get; set; } } }