using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ApiContractGoal Data Structure.
///
[Serializable]
public class ApiContractGoal : AopObject
{
///
/// 完成时间
///
[XmlElement("complete_date")]
public string CompleteDate { get; set; }
///
/// 创建时间
///
[XmlElement("create_date")]
public string CreateDate { get; set; }
///
/// 当前目标值
///
[XmlElement("goal_current_value")]
public long GoalCurrentValue { get; set; }
///
/// 标的key
///
[XmlElement("goal_key")]
public string GoalKey { get; set; }
///
/// cancel
///
[XmlElement("goal_status")]
public string GoalStatus { get; set; }
///
/// time、amount、subject
///
[XmlElement("goal_type")]
public string GoalType { get; set; }
///
/// 标的目标值
///
[XmlElement("goal_value")]
public long GoalValue { get; set; }
///
/// 事项号
///
[XmlElement("item_no")]
public string ItemNo { get; set; }
///
/// 最后一次完成时间
///
[XmlElement("last_complete_date")]
public string LastCompleteDate { get; set; }
}
}