using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ActivityStat Data Structure. /// [Serializable] public class ActivityStat : AopObject { /// /// 活动总参与人次, 即活动总共签署合约数 /// [XmlElement("contract_count")] public long ContractCount { get; set; } /// /// 已完成的合约数(人次) /// [XmlElement("finished_count")] public long FinishedCount { get; set; } /// /// 已失效的合约数(人次) /// [XmlElement("lose_efficacy_count")] public long LoseEfficacyCount { get; set; } /// /// 活动总参与人数 /// [XmlElement("participator_count")] public long ParticipatorCount { get; set; } /// /// 待守约的合约数(人次) /// [XmlElement("promising_count")] public long PromisingCount { get; set; } /// /// 活动总履约数, 即总核销次数 /// [XmlElement("trade_count")] public long TradeCount { get; set; } /// /// 已逾期的合约数(人次) /// [XmlElement("violated_count")] public long ViolatedCount { get; set; } } }