Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayUserCharityRecordexistQueryModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

42 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserCharityRecordexistQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserCharityRecordexistQueryModel : AopObject
{
/// <summary>
/// 公益的业务类型(缺省是所有类型)
/// </summary>
[JsonProperty("biz_type")]
public long BizType { get; set; }
/// <summary>
/// 捐赠记录的结束时间(默认是查询当前自然年一年的记录)
/// </summary>
[JsonProperty("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 商户和支付宝交互时用于代表支付宝分配给商户ID
/// </summary>
[JsonProperty("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 捐赠记录的开始时间(默认是查询当前自然年一年的记录)
/// </summary>
[JsonProperty("start_time")]
public string StartTime { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}