using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayPcreditLoanCommissionQueryModel Data Structure. /// [Serializable] public class AlipayPcreditLoanCommissionQueryModel : AopObject { /// /// 账户ID /// [XmlElement("account_id")] public string AccountId { get; set; } /// /// 账户类型: 1.支付宝登录号-ALIPAY_LOGON_ID 2.支付宝会员ID-ALIPAY_USER_ID /// [XmlElement("account_type")] public string AccountType { get; set; } /// /// 指定数据查询的日期,格式为:yyyyMMdd,如果用户指定则使用指定日期,否则使用系统日期 /// [XmlElement("biz_date")] public string BizDate { get; set; } /// /// 渠道,用于标识请求来源 /// [XmlElement("channel")] public string Channel { get; set; } /// /// 企业ID,如居然之家、红星美凯龙等 /// [XmlElement("enterprise_id")] public string EnterpriseId { get; set; } /// /// 外部请求号,代表了一次请求,作为业务幂等性控制 /// [XmlElement("out_request_no")] public string OutRequestNo { get; set; } /// /// 门店ID /// [XmlElement("store_id")] public string StoreId { get; set; } } }