Açıklama Yok

T_Sys_Comprehensive.cs 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. [Serializable]
  9. public partial class T_Sys_Comprehensive
  10. {
  11. public T_Sys_Comprehensive()
  12. { }
  13. #region Model
  14. private int _f_id;
  15. private int? _f_newscore;
  16. private string _f_newscoreremarks;
  17. private DateTime? _f_newscoretime;
  18. private int? _f_supervisionscore;
  19. private string _f_scoresupervision;
  20. private DateTime? _f_supervisiontime;
  21. private string _f_creatuser;
  22. private DateTime? _f_creattime;
  23. private int? _f_deprid;
  24. /// <summary>
  25. ///
  26. /// </summary>
  27. public int F_ID
  28. {
  29. set { _f_id = value; }
  30. get { return _f_id; }
  31. }
  32. /// <summary>
  33. ///
  34. /// </summary>
  35. public int? F_NewScore
  36. {
  37. set { _f_newscore = value; }
  38. get { return _f_newscore; }
  39. }
  40. /// <summary>
  41. ///
  42. /// </summary>
  43. public string F_NewScoreRemarks
  44. {
  45. set { _f_newscoreremarks = value; }
  46. get { return _f_newscoreremarks; }
  47. }
  48. /// <summary>
  49. ///
  50. /// </summary>
  51. public DateTime? F_NewScoreTime
  52. {
  53. set { _f_newscoretime = value; }
  54. get { return _f_newscoretime; }
  55. }
  56. /// <summary>
  57. ///
  58. /// </summary>
  59. public int? F_SupervisionScore
  60. {
  61. set { _f_supervisionscore = value; }
  62. get { return _f_supervisionscore; }
  63. }
  64. /// <summary>
  65. ///
  66. /// </summary>
  67. public string F_ScoreSupervision
  68. {
  69. set { _f_scoresupervision = value; }
  70. get { return _f_scoresupervision; }
  71. }
  72. /// <summary>
  73. ///
  74. /// </summary>
  75. public DateTime? F_SupervisionTime
  76. {
  77. set { _f_supervisiontime = value; }
  78. get { return _f_supervisiontime; }
  79. }
  80. /// <summary>
  81. ///
  82. /// </summary>
  83. public string F_CreatUser
  84. {
  85. set { _f_creatuser = value; }
  86. get { return _f_creatuser; }
  87. }
  88. /// <summary>
  89. ///
  90. /// </summary>
  91. public DateTime? F_CreatTime
  92. {
  93. set { _f_creattime = value; }
  94. get { return _f_creattime; }
  95. }
  96. /// <summary>
  97. ///
  98. /// </summary>
  99. public int? F_Deprid
  100. {
  101. set { _f_deprid = value; }
  102. get { return _f_deprid; }
  103. }
  104. public int F_Score { set; get; }
  105. public string F_ScoreRemarks { set; get; }
  106. public DateTime? F_ScoreTime { set; get; }
  107. /// <summary>
  108. /// 信息宣传
  109. /// </summary>
  110. public float Information { set; get; }
  111. public string InformationRemarks { set; get; }
  112. public DateTime? InformationTime { set; get; }
  113. /// <summary>
  114. /// 优秀案件
  115. /// </summary>
  116. public float Excellent { set; get; }
  117. public string ExcellentRemarks { set; get; }
  118. public DateTime? ExcellentTime { set; get; }
  119. /// <summary>
  120. /// 即办事项
  121. /// </summary>
  122. public float Immediate { set; get; }
  123. public string ImmediateRemarks { set; get; }
  124. public DateTime? ImmediateTime { set; get; }
  125. #endregion Model
  126. }
  127. }