初始提交

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,24 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// OpenPromoPrizeRelativeTime Data Structure.
/// </summary>
[Serializable]
public class OpenPromoPrizeRelativeTime : AopObject
{
/// <summary>
/// 时间维度, MI表示 分 H表示 时 D表示 日 W表示 周 M表示 月
/// </summary>
[JsonProperty("dimension")]
public string Dimension { get; set; }
/// <summary>
/// 相对值
/// </summary>
[JsonProperty("value")]
public string Value { get; set; }
}
}