using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// ApiContractItem Data Structure. /// [Serializable] public class ApiContractItem : AopObject { /// /// 实际逾期时间 /// [XmlElement("actual_due_time")] public string ActualDueTime { get; set; } /// /// 完成时间 /// [XmlElement("complete_time")] public string CompleteTime { get; set; } /// /// 合约号 /// [XmlElement("contract_no")] public string ContractNo { get; set; } /// /// 逾期时间 /// [XmlElement("due_time")] public string DueTime { get; set; } /// /// 事项目标 /// [XmlArray("goals")] [XmlArrayItem("api_contract_goal")] public List Goals { get; set; } /// /// 事项号 /// [XmlElement("item_no")] public string ItemNo { get; set; } /// /// 事项期数 /// [XmlElement("item_phase")] public string ItemPhase { get; set; } /// /// PENDING_COMPLETE、COMPLETE、UNDONE、CLOSE /// [XmlElement("item_status")] public string ItemStatus { get; set; } /// /// 发约单号 /// [XmlElement("offer_no")] public string OfferNo { get; set; } /// /// 每一期事项下的次数 /// [XmlElement("phase_serial_num")] public string PhaseSerialNum { get; set; } /// /// 模版号 /// [XmlElement("template_no")] public string TemplateNo { get; set; } } }