30 lines
673 B
C#
30 lines
673 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AntProdpaasArrangementRebateRateQueryModel Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AntProdpaasArrangementRebateRateQueryModel : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 数据项名称
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("data_item_name")]
|
||
|
|
public string DataItemName { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 一级类目ID
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("first_category_id")]
|
||
|
|
public string FirstCategoryId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 查询时间
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("gmt_query")]
|
||
|
|
public string GmtQuery { get; set; }
|
||
|
|
}
|
||
|
|
}
|