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

30 lines
978 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>
/// AlipayFinanceZcbEndowmentorderDetailQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFinanceZcbEndowmentorderDetailQueryModel : AopObject
{
/// <summary>
/// 查询条件里时间区间的结束时间格式为YYYYMMDDHHMISS采用左开右闭的方式
/// </summary>
[JsonProperty("end_time")]
public string EndTime { get; set; }
/// <summary>
/// product_id产品id可以咨询蚂蚁这边的同学给出需要查询的产品id查询订单只能按照产品纬度来查
/// </summary>
[JsonProperty("product_id")]
public string ProductId { get; set; }
/// <summary>
/// 查询条件里时间区间的开始时间格式YYYYMMDDHHMISS查询订单的开始时间采用左开右闭的方式
/// </summary>
[JsonProperty("start_time")]
public string StartTime { get; set; }
}
}