IM12345_Api demo - 代码源于 商丘市12345项目

T_RepositoryInformation.cs 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. using System;
  2. namespace CallCenterApi.Model
  3. {
  4. /// <summary>
  5. /// T_RepositoryInformation:实体类(属性说明自动提取数据库字段的描述信息)
  6. /// </summary>
  7. [Serializable]
  8. public partial class T_RepositoryInformation
  9. {
  10. public T_RepositoryInformation()
  11. { }
  12. #region Model
  13. private int _f_repositoryid;
  14. private int? _f_categoryid;
  15. private string _f_title;
  16. private string _f_content;
  17. private string _f_description;
  18. private string _f_url;
  19. private string _f_keywords;
  20. private int? _f_clickcount;
  21. private int? _f_ispass;
  22. private int? _f_issubmitaudit;
  23. private string _f_expand1;
  24. private string _f_expand2;
  25. private int? _f_intexpand1;
  26. private DateTime? _f_createon;
  27. private int? _f_createby;
  28. private int? _f_auditid;
  29. private int? _f_usenum = 0;
  30. private int? _f_collectionnum = 0;
  31. /// <summary>
  32. /// 知识库条目id
  33. /// </summary>
  34. public int F_RepositoryId
  35. {
  36. set { _f_repositoryid = value; }
  37. get { return _f_repositoryid; }
  38. }
  39. /// <summary>
  40. /// 分类id
  41. /// </summary>
  42. public int? F_CategoryId
  43. {
  44. set { _f_categoryid = value; }
  45. get { return _f_categoryid; }
  46. }
  47. /// <summary>
  48. /// 知识库条目名称
  49. /// </summary>
  50. public string F_Title
  51. {
  52. set { _f_title = value; }
  53. get { return _f_title; }
  54. }
  55. /// <summary>
  56. /// 知识库条目内容
  57. /// </summary>
  58. public string F_Content
  59. {
  60. set { _f_content = value; }
  61. get { return _f_content; }
  62. }
  63. /// <summary>
  64. /// 描述
  65. /// </summary>
  66. public string F_Description
  67. {
  68. set { _f_description = value; }
  69. get { return _f_description; }
  70. }
  71. /// <summary>
  72. /// 附件地址(可多个)
  73. /// </summary>
  74. public string F_Url
  75. {
  76. set { _f_url = value; }
  77. get { return _f_url; }
  78. }
  79. /// <summary>
  80. /// 关键字
  81. /// </summary>
  82. public string F_KeyWords
  83. {
  84. set { _f_keywords = value; }
  85. get { return _f_keywords; }
  86. }
  87. /// <summary>
  88. /// 点击量
  89. /// </summary>
  90. public int? F_ClickCount
  91. {
  92. set { _f_clickcount = value; }
  93. get { return _f_clickcount; }
  94. }
  95. /// <summary>
  96. /// 是否通过审核(1是;-1否;0未审核)
  97. /// </summary>
  98. public int? F_ISPass
  99. {
  100. set { _f_ispass = value; }
  101. get { return _f_ispass; }
  102. }
  103. /// <summary>
  104. /// 是否已提交审核(1是;0否)
  105. /// </summary>
  106. public int? F_ISSubmitAudit
  107. {
  108. set { _f_issubmitaudit = value; }
  109. get { return _f_issubmitaudit; }
  110. }
  111. /// <summary>
  112. /// 扩展
  113. /// </summary>
  114. public string F_Expand1
  115. {
  116. set { _f_expand1 = value; }
  117. get { return _f_expand1; }
  118. }
  119. /// <summary>
  120. /// 扩展2
  121. /// </summary>
  122. public string F_Expand2
  123. {
  124. set { _f_expand2 = value; }
  125. get { return _f_expand2; }
  126. }
  127. /// <summary>
  128. /// Int扩展
  129. /// </summary>
  130. public int? F_IntExpand1
  131. {
  132. set { _f_intexpand1 = value; }
  133. get { return _f_intexpand1; }
  134. }
  135. /// <summary>
  136. /// 添加时间
  137. /// </summary>
  138. public DateTime? F_CreateOn
  139. {
  140. set { _f_createon = value; }
  141. get { return _f_createon; }
  142. }
  143. /// <summary>
  144. /// 添加人
  145. /// </summary>
  146. public int? F_CreateBy
  147. {
  148. set { _f_createby = value; }
  149. get { return _f_createby; }
  150. }
  151. /// <summary>
  152. /// 审核ID
  153. /// </summary>
  154. public int? F_AuditID
  155. {
  156. set { _f_auditid = value; }
  157. get { return _f_auditid; }
  158. }
  159. /// <summary>
  160. /// 使用数 - 在线客服
  161. /// </summary>
  162. public int? F_UseNum
  163. {
  164. set { _f_usenum = value; }
  165. get { return _f_usenum; }
  166. }
  167. /// <summary>
  168. /// 收藏数 - 在线客服
  169. /// </summary>
  170. public int? F_CollectionNum
  171. {
  172. set { _f_collectionnum = value; }
  173. get { return _f_collectionnum; }
  174. }
  175. #endregion Model
  176. }
  177. }