25 lines
501 B
C#
25 lines
501 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// PeriodInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class PeriodInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 单位
|
|
/// </summary>
|
|
[XmlElement("dimension")]
|
|
public string Dimension { get; set; }
|
|
|
|
/// <summary>
|
|
/// 周期值
|
|
/// </summary>
|
|
[XmlElement("value")]
|
|
public long Value { get; set; }
|
|
}
|
|
}
|