人民医院API

T_QC_IndexRes.cs 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace RMYY_CallCenter_Api.Model
  7. {
  8. public class T_QC_IndexRes
  9. {
  10. public T_QC_IndexRes()
  11. { }
  12. #region Model
  13. private int _f_id;
  14. private int? _callrecordsid;
  15. private int? _f_indexid;
  16. private int? _f_score = 0;
  17. private int? _f_qcscore = 0;
  18. private string _f_remark;
  19. /// <summary>
  20. /// 质检结果Id
  21. /// </summary>
  22. public int F_Id
  23. {
  24. set { _f_id = value; }
  25. get { return _f_id; }
  26. }
  27. /// <summary>
  28. /// 通话记录Id
  29. /// </summary>
  30. public int? CallRecordsId
  31. {
  32. set { _callrecordsid = value; }
  33. get { return _callrecordsid; }
  34. }
  35. /// <summary>
  36. /// 指标Id
  37. /// </summary>
  38. public int? F_IndexId
  39. {
  40. set { _f_indexid = value; }
  41. get { return _f_indexid; }
  42. }
  43. /// <summary>
  44. /// 指标分值
  45. /// </summary>
  46. public int? F_Score
  47. {
  48. set { _f_score = value; }
  49. get { return _f_score; }
  50. }
  51. /// <summary>
  52. /// 质检分值
  53. /// </summary>
  54. public int? F_QCScore
  55. {
  56. set { _f_qcscore = value; }
  57. get { return _f_qcscore; }
  58. }
  59. /// <summary>
  60. /// 指标备注
  61. /// </summary>
  62. public string F_Remark
  63. {
  64. set { _f_remark = value; }
  65. get { return _f_remark; }
  66. }
  67. #endregion Model
  68. }
  69. }