using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserCharityRecordexistQueryModel Data Structure. /// [Serializable] public class AlipayUserCharityRecordexistQueryModel : AopObject { /// /// 公益的业务类型(缺省是所有类型) /// [XmlElement("biz_type")] public long BizType { get; set; } /// /// 捐赠记录的结束时间(默认是查询当前自然年一年的记录) /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// 商户和支付宝交互时,用于代表支付宝分配给商户ID /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// 捐赠记录的开始时间(默认是查询当前自然年一年的记录) /// [XmlElement("start_time")] public string StartTime { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }