Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayItemLimitPeriodInfo.cs

32 lines
862 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayItemLimitPeriodInfo Data Structure.
/// </summary>
[Serializable]
public class AlipayItemLimitPeriodInfo : 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>
/// 区间范围值参数类型为Number
/// </summary>
[JsonProperty("value")]
public List<long> Value { get; set; }
}
}