ZZDianXin_API - 郑州电信演示

T_Ask_Question.cs 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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_Ask_Question
  10. {
  11. public T_Ask_Question()
  12. { }
  13. #region Model
  14. private int _f_questionid;
  15. private int? _f_categoryid;
  16. private int? _f_type;
  17. private string _f_title;
  18. private string _f_content;
  19. private string _f_remark;
  20. private DateTime? _f_createon;
  21. private int? _f_createby;
  22. private DateTime? _f_modifyon;
  23. private int? _f_modifyby;
  24. private int? _f_deleteflag;
  25. private string _f_categoryname;
  26. private int? _f_sortmodel = 0;
  27. /// <summary>
  28. /// 排序模式
  29. /// </summary>
  30. public int? F_SortModel
  31. {
  32. set { _f_sortmodel = value; }
  33. get { return _f_sortmodel; }
  34. }
  35. /// <summary>
  36. ///
  37. /// </summary>
  38. public string F_CategoryName
  39. {
  40. set { _f_categoryname = value; }
  41. get { return _f_categoryname; }
  42. }
  43. /// <summary>
  44. ///
  45. /// </summary>
  46. public int F_QuestionId
  47. {
  48. set { _f_questionid = value; }
  49. get { return _f_questionid; }
  50. }
  51. /// <summary>
  52. /// 试题分类Id
  53. /// </summary>
  54. public int? F_CategoryId
  55. {
  56. set { _f_categoryid = value; }
  57. get { return _f_categoryid; }
  58. }
  59. /// <summary>
  60. /// 题型
  61. /// </summary>
  62. public int? F_Type
  63. {
  64. set { _f_type = value; }
  65. get { return _f_type; }
  66. }
  67. /// <summary>
  68. /// 试题标题
  69. /// </summary>
  70. public string F_Title
  71. {
  72. set { _f_title = value; }
  73. get { return _f_title; }
  74. }
  75. /// <summary>
  76. /// 试题内容
  77. /// </summary>
  78. public string F_Content
  79. {
  80. set { _f_content = value; }
  81. get { return _f_content; }
  82. }
  83. /// <summary>
  84. /// 备注
  85. /// </summary>
  86. public string F_Remark
  87. {
  88. set { _f_remark = value; }
  89. get { return _f_remark; }
  90. }
  91. /// <summary>
  92. /// 添加时间
  93. /// </summary>
  94. public DateTime? F_CreateOn
  95. {
  96. set { _f_createon = value; }
  97. get { return _f_createon; }
  98. }
  99. /// <summary>
  100. /// 创建人
  101. /// </summary>
  102. public int? F_CreateBy
  103. {
  104. set { _f_createby = value; }
  105. get { return _f_createby; }
  106. }
  107. /// <summary>
  108. /// 修改时间
  109. /// </summary>
  110. public DateTime? F_ModifyOn
  111. {
  112. set { _f_modifyon = value; }
  113. get { return _f_modifyon; }
  114. }
  115. /// <summary>
  116. /// 修改人Id
  117. /// </summary>
  118. public int? F_ModifyBy
  119. {
  120. set { _f_modifyby = value; }
  121. get { return _f_modifyby; }
  122. }
  123. /// <summary>
  124. /// 删除标志
  125. /// </summary>
  126. public int? F_DeleteFlag
  127. {
  128. set { _f_deleteflag = value; }
  129. get { return _f_deleteflag; }
  130. }
  131. #endregion Model
  132. }
  133. }