| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- 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; }
- ///// <summary>
- ///// 坐席Code
- ///// </summary>
- //public string AccountCode { get; set; }
- ///// <summary>
- ///// 处理工单数量
- ///// </summary>
- //public int count { get; set; }
- ///// <summary>
- ///// 上个月环比
- ///// </summary>
- //public int MoM { get; set; }
- ///// <summary>
- ///// 去年同期同比
- ///// </summary>
- //public bool YoY { get; set; }
- }
- }
|