using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenter.Utility { public class MergerHot { public class MergerHotSource { public string Data { set; get; } public List MergerHot { set; get; } } public class MergerHots { /// /// 日期 /// public string Source { set; get; } /// /// 来电量 /// public int Call { set; get; } /// /// 接通量 /// public int Connect { set; get; } /// /// 未接通 /// public int Notconnected { set; get; } /// /// 主动放弃 /// public int voluntarily { set; get; } /// /// 接通率 /// public string rate { set; get; } /// /// 回拨量 /// public int callback { set; get; } public int sort { set; get; } } } }