No Description

T_Que_Question_Map.cs 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. /// 分数答案表
  10. /// </summary>
  11. public partial class T_Que_Question_Map
  12. {
  13. public T_Que_Question_Map()
  14. { }
  15. #region Model
  16. private long _id;
  17. private string _workorderid;
  18. private int? _questionid;
  19. private int? _questioniid;
  20. private int? _totalscore;
  21. private int? _score;
  22. private string _createby;
  23. private string _answersyitle;
  24. private DateTime? _createtime;
  25. /// <summary>
  26. /// Id
  27. /// </summary>
  28. public long Id
  29. {
  30. set { _id = value; }
  31. get { return _id; }
  32. }
  33. /// <summary>
  34. /// 工单号
  35. /// </summary>
  36. public string WorkOrderId
  37. {
  38. set { _workorderid = value; }
  39. get { return _workorderid; }
  40. }
  41. /// <summary>
  42. /// 问题Id
  43. /// </summary>
  44. public int? QuestionId
  45. {
  46. set { _questionid = value; }
  47. get { return _questionid; }
  48. }
  49. /// <summary>
  50. /// 答案Id
  51. /// </summary>
  52. public int? QuestionIId
  53. {
  54. set { _questioniid = value; }
  55. get { return _questioniid; }
  56. }
  57. /// <summary>
  58. /// 问题满分分数
  59. /// </summary>
  60. public int? TotalScore
  61. {
  62. set { _totalscore = value; }
  63. get { return _totalscore; }
  64. }
  65. /// <summary>
  66. /// 答案分数
  67. /// </summary>
  68. public int? Score
  69. {
  70. set { _score = value; }
  71. get { return _score; }
  72. }
  73. /// <summary>
  74. ///
  75. /// </summary>
  76. public string CreateBy
  77. {
  78. set { _createby = value; }
  79. get { return _createby; }
  80. }
  81. /// <summary>
  82. /// 问答项
  83. /// </summary>
  84. public string AnswersTitle
  85. {
  86. set { _answersyitle = value; }
  87. get { return _answersyitle; }
  88. }
  89. /// <summary>
  90. ///
  91. /// </summary>
  92. public DateTime? CreateTime
  93. {
  94. set { _createtime = value; }
  95. get { return _createtime; }
  96. }
  97. #endregion Model
  98. }
  99. }