Aucune description

T_QC_IndexRes.cs 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. /// <summary>
  9. /// T_QC_IndexRes:实体类(属性说明自动提取数据库字段的描述信息)
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_QC_IndexRes
  13. {
  14. public T_QC_IndexRes()
  15. { }
  16. #region Model
  17. private int _f_id;
  18. private int? _callrecordsid;
  19. private int? _f_indexid;
  20. private int? _f_score = 0;
  21. private int? _f_qcscore = 0;
  22. private string _f_remark;
  23. /// <summary>
  24. /// 质检结果Id
  25. /// </summary>
  26. public int F_Id
  27. {
  28. set { _f_id = value; }
  29. get { return _f_id; }
  30. }
  31. /// <summary>
  32. /// 通话记录Id
  33. /// </summary>
  34. public int? CallRecordsId
  35. {
  36. set { _callrecordsid = value; }
  37. get { return _callrecordsid; }
  38. }
  39. /// <summary>
  40. /// 指标Id
  41. /// </summary>
  42. public int? F_IndexId
  43. {
  44. set { _f_indexid = value; }
  45. get { return _f_indexid; }
  46. }
  47. /// <summary>
  48. /// 指标分值
  49. /// </summary>
  50. public int? F_Score
  51. {
  52. set { _f_score = value; }
  53. get { return _f_score; }
  54. }
  55. /// <summary>
  56. /// 质检分值
  57. /// </summary>
  58. public int? F_QCScore
  59. {
  60. set { _f_qcscore = value; }
  61. get { return _f_qcscore; }
  62. }
  63. /// <summary>
  64. /// 指标备注
  65. /// </summary>
  66. public string F_Remark
  67. {
  68. set { _f_remark = value; }
  69. get { return _f_remark; }
  70. }
  71. #endregion Model
  72. }
  73. }