接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 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; }
}
}