using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserInviteOnlinesummaryQueryModel Data Structure. /// [Serializable] public class AlipayUserInviteOnlinesummaryQueryModel : AopObject { /// /// 二级渠道 /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// 一级渠道 /// [XmlElement("pid")] public string Pid { get; set; } /// /// 日期 /// [XmlElement("report_date")] public string ReportDate { get; set; } } }