using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { public class WeaklyReport { public string WorkOrderId { get; set; } public int WorkOrderState { get; set; } public int FieldId { get; set; } public string FieldName { get; set; } } public class WeaklyReport1 { public string WorkOrderId { get; set; } public int WorkOrderState { get; set; } public string FieldId { get; set; } public string FieldName { get; set; } } public class DelayReport { public string WorkOrderId { get; set; } public int DeptId { get; set; } public int DelayId { get; set; } } public class DelayReport1 { public string WorkOrderId { get; set; } public string DeptId { get; set; } public int DelayId { get; set; } } public class NoticeReport { public string WorkOrderId { get; set; } public int DeptId { get; set; } public bool IsNotice { get; set; } } public class NoticeReport1 { public string WorkOrderId { get; set; } public string DeptId { get; set; } public bool IsNotice { get; set; } } public class EfficiencyReport { public string WorkOrderId { get; set; } public int DeptId { get; set; } public bool IsOverdue { get; set; } public bool IsSatisfie { get; set; } } public class AppealReport { public string WorkOrderId { get; set; } public string UserCode { get; set; } ///// ///// 坐席Code ///// //public string AccountCode { get; set; } ///// ///// 处理工单数量 ///// //public int count { get; set; } ///// ///// 上个月环比 ///// //public int MoM { get; set; } ///// ///// 去年同期同比 ///// //public bool YoY { get; set; } } }