初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayDataItemLimitPeriodInfo Data Structure.
/// </summary>
[Serializable]
public class AlipayDataItemLimitPeriodInfo : AopObject
{
/// <summary>
/// 区间范围枚举,分为: INCLUDE包含 EXCLUDE排除
/// </summary>
[JsonProperty("rule")]
public string Rule { get; set; }
/// <summary>
/// 单位描述,分为: MINUTE分钟 HOUR小时 WEEK_DAY星期几 DAY WEEK MONTH ALL整个销售周期
/// </summary>
[JsonProperty("unit")]
public string Unit { get; set; }
/// <summary>
/// 区间范围值
/// </summary>
[JsonProperty("value")]
public List<long> Value { get; set; }
}
}