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

30 lines
987 B
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>
/// AlipayFundTransDishonorQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundTransDishonorQueryModel : AopObject
{
/// <summary>
/// 查询退票起始时间:大于等于格式为yyyyMMdd。 用于查询退票起始日期00:00:00后发生的退票。 与refund_end差距不得大于15天。
/// </summary>
[JsonProperty("dishonor_begin")]
public string DishonorBegin { get; set; }
/// <summary>
/// 查询退票截止时间小于格式为yyyyMMdd。 用于查询退票截止日期24:00:00前发生的退票。 与refund_begin差距不得大于15天。
/// </summary>
[JsonProperty("dishonor_end")]
public string DishonorEnd { get; set; }
/// <summary>
/// 查询页号。 必须是正整数。 默认值为1。
/// </summary>
[JsonProperty("page")]
public string Page { get; set; }
}
}