初始提交
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// PeriodInfo Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class PeriodInfo : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 单位
|
||||
/// </summary>
|
||||
[JsonProperty("dimension")]
|
||||
public string Dimension { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 周期值
|
||||
/// </summary>
|
||||
[JsonProperty("value")]
|
||||
public long Value { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user