using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// BccSubjectDetail Data Structure.
///
[Serializable]
public class BccSubjectDetail : AopObject
{
///
/// 标的完成值
///
[XmlElement("completions")]
public string Completions { get; set; }
///
/// 当前值
///
[XmlElement("current_value")]
public string CurrentValue { get; set; }
///
/// 该标的对应的事项
///
[XmlElement("item_no")]
public string ItemNo { get; set; }
///
/// 标的id
///
[XmlElement("subject_id")]
public string SubjectId { get; set; }
///
/// 标的类型
///
[XmlElement("subject_type")]
public string SubjectType { get; set; }
}
}