using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CountControlConfig Data Structure. /// [Serializable] public class CountControlConfig : AopObject { /// /// 每天次数 /// [XmlElement("day_count")] public long DayCount { get; set; } /// /// 计次维度, USER_ID 用户id, TERMINAL_ID 终端id, PHONE_NO 手机号,ID_CARD_NO 证件号 /// [XmlElement("dimension")] public string Dimension { get; set; } /// /// 计次主题类型, CAMP_ACCESS 活动参与次数, CAMP_WIN 活动中奖次数 /// [XmlElement("domain_type")] public string DomainType { get; set; } /// /// 终身次数 /// [XmlElement("life_count")] public long LifeCount { get; set; } /// /// 每月次数 /// [XmlElement("month_count")] public long MonthCount { get; set; } /// /// 每周次数 /// [XmlElement("week_count")] public long WeekCount { get; set; } /// /// 每年次数 /// [XmlElement("year_count")] public long YearCount { get; set; } } }