IM12345_Api demo - 代码源于 商丘市12345项目

T_Bus_WorkOrderReport.cs 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.Model
  7. {
  8. public class WeaklyReport
  9. {
  10. public string WorkOrderId { get; set; }
  11. public int WorkOrderState { get; set; }
  12. public int FieldId { get; set; }
  13. public string FieldName { get; set; }
  14. }
  15. public class WeaklyReport1
  16. {
  17. public string WorkOrderId { get; set; }
  18. public int WorkOrderState { get; set; }
  19. public string FieldId { get; set; }
  20. public string FieldName { get; set; }
  21. }
  22. public class DelayReport
  23. {
  24. public string WorkOrderId { get; set; }
  25. public int DeptId { get; set; }
  26. public int DelayId { get; set; }
  27. }
  28. public class DelayReport1
  29. {
  30. public string WorkOrderId { get; set; }
  31. public string DeptId { get; set; }
  32. public int DelayId { get; set; }
  33. }
  34. public class NoticeReport
  35. {
  36. public string WorkOrderId { get; set; }
  37. public int DeptId { get; set; }
  38. public bool IsNotice { get; set; }
  39. }
  40. public class NoticeReport1
  41. {
  42. public string WorkOrderId { get; set; }
  43. public string DeptId { get; set; }
  44. public bool IsNotice { get; set; }
  45. }
  46. public class EfficiencyReport
  47. {
  48. public string WorkOrderId { get; set; }
  49. public int DeptId { get; set; }
  50. public bool IsOverdue { get; set; }
  51. public bool IsSatisfie { get; set; }
  52. }
  53. public class AppealReport
  54. {
  55. public string WorkOrderId { get; set; }
  56. public string UserCode { get; set; }
  57. ///// <summary>
  58. ///// 坐席Code
  59. ///// </summary>
  60. //public string AccountCode { get; set; }
  61. ///// <summary>
  62. ///// 处理工单数量
  63. ///// </summary>
  64. //public int count { get; set; }
  65. ///// <summary>
  66. ///// 上个月环比
  67. ///// </summary>
  68. //public int MoM { get; set; }
  69. ///// <summary>
  70. ///// 去年同期同比
  71. ///// </summary>
  72. //public bool YoY { get; set; }
  73. }
  74. }