StatisticsDepartSatisfied.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using XF.Domain.Repository;
  9. namespace Hotline.Statistics
  10. {
  11. /// <summary>
  12. /// 部门满意度统计
  13. /// </summary>
  14. [Description("部门满意度统计")]
  15. [SugarIndex("index_statisticsDepartSatisfied_insertTime", nameof(StatisticsDepartSatisfied.InsertTime), OrderByType.Desc)]
  16. public class StatisticsDepartSatisfied : CreationEntity
  17. {
  18. /// <summary>
  19. /// 部门标识
  20. /// </summary>
  21. [SugarColumn(ColumnDescription = "部门标识")]
  22. public int DepartmentId { get; set; }
  23. /// <summary>
  24. /// 父级标识
  25. /// </summary>
  26. [SugarColumn(ColumnDescription = "父级标识")]
  27. public int DepartmentPId { get; set; }
  28. /// <summary>
  29. /// 部门名称
  30. /// </summary>
  31. [SugarColumn(ColumnDescription = "部门名称")]
  32. public string Name { get; set; }
  33. /// <summary>
  34. /// 部门类别
  35. /// </summary>
  36. [SugarColumn(ColumnDescription = "部门类别")]
  37. public string Type { get; set; }
  38. /// <summary>
  39. /// 小计
  40. /// </summary>
  41. [SugarColumn(ColumnDescription = "小计")]
  42. public int Total { get; set; }
  43. /// <summary>
  44. /// 非常满意
  45. /// </summary>
  46. [SugarColumn(ColumnDescription = "非常满意")]
  47. public int VerySatisfaction { get; set; }
  48. /// <summary>
  49. /// 满意
  50. /// </summary>
  51. [SugarColumn(ColumnDescription = "满意")]
  52. public int Satisfaction { get; set; }
  53. /// <summary>
  54. /// 视为满意
  55. /// </summary>
  56. [SugarColumn(ColumnDescription = "视为满意")]
  57. public int TreatSatisfaction { get; set; }
  58. /// <summary>
  59. /// 默认满意
  60. /// </summary>
  61. [SugarColumn(ColumnDescription = " 默认满意")]
  62. public int DefaultSatisfaction { get; set; }
  63. /// <summary>
  64. /// 不满意
  65. /// </summary>
  66. [SugarColumn(ColumnDescription = " 不满意")]
  67. public int Dissatisfaction { get; set; }
  68. /// <summary>
  69. /// 未做评价
  70. /// </summary>
  71. [SugarColumn(ColumnDescription = "未做评价")]
  72. public int NotEvaluated { get; set; }
  73. /// <summary>
  74. /// 未接通
  75. /// </summary>
  76. [SugarColumn(ColumnDescription = " 未接通")]
  77. public int BlockCall { get; set; }
  78. /// <summary>
  79. /// (泸州、自贡)一般
  80. /// </summary>
  81. [SugarColumn(ColumnDescription = "(泸州、自贡)一般")]
  82. public int Ordinary { get; set; }
  83. /// <summary>
  84. /// (泸州、自贡)非常不满意
  85. /// </summary>
  86. [SugarColumn(ColumnDescription = "(泸州、自贡)非常不满意")]
  87. public int BeUnsatisfied { get; set; }
  88. /// <summary>
  89. /// (自贡)甄别为满意 自贡的视为满意名字是甄别为满意
  90. /// </summary>
  91. [SugarColumn(ColumnDescription = "(自贡)甄别为满意 自贡的视为满意名字是甄别为满意")]
  92. public int ScreenSatisfaction { get; set; }
  93. /// <summary>
  94. /// (泸州)公开件
  95. /// </summary>
  96. [SugarColumn(ColumnDescription = "(泸州)公开件")]
  97. public int PublishPublicNum { get; set; }
  98. /// <summary>
  99. /// (泸州)不公开件
  100. /// </summary>
  101. [SugarColumn(ColumnDescription = "(泸州)不公开件")]
  102. public int PublishNotNum { get; set; }
  103. /// <summary>
  104. /// (泸州)申请总量
  105. /// </summary>
  106. [SugarColumn(ColumnDescription = "(泸州)申请总量")]
  107. public int ScreenApplyNum { get; set; }
  108. /// <summary>
  109. /// (泸州)待甄别
  110. /// </summary>
  111. [SugarColumn(ColumnDescription = "(泸州)待甄别")]
  112. public int ScreenWaitNum { get; set; }
  113. /// <summary>
  114. /// 统计日期
  115. /// </summary>
  116. [SugarColumn(ColumnDescription = "统计日期")]
  117. public DateTime Time { get; set; }
  118. /// <summary>
  119. /// 统计时限
  120. /// </summary>
  121. [SugarColumn(ColumnDescription = "统计时限")]
  122. public int Month { get; set; }
  123. /// <summary>
  124. /// 入库时间
  125. /// </summary>
  126. [SugarColumn(ColumnDescription = "入库时间")]
  127. public DateTime InsertTime { get; set; }
  128. }
  129. }