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

T_RepositoryLog.cs 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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_RepositoryLog:实体类(属性说明自动提取数据库字段的描述信息)
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_RepositoryLog
  13. {
  14. public T_RepositoryLog()
  15. { }
  16. #region Model
  17. private int _f_logid;
  18. private int? _f_repositoryid;
  19. private int? _f_action;
  20. private string _f_title;
  21. private string _f_content;
  22. private string _f_description;
  23. private string _f_url;
  24. private string _f_keywords;
  25. private DateTime? _f_createon;
  26. private int? _f_createby;
  27. private string _f_expand1;
  28. private string _f_expand2;
  29. private int? _f_intexpand1;
  30. /// <summary>
  31. /// 日志ID
  32. /// </summary>
  33. public int F_LogId
  34. {
  35. set { _f_logid = value; }
  36. get { return _f_logid; }
  37. }
  38. /// <summary>
  39. /// 知识库条目ID
  40. /// </summary>
  41. public int? F_RepositoryId
  42. {
  43. set { _f_repositoryid = value; }
  44. get { return _f_repositoryid; }
  45. }
  46. /// <summary>
  47. /// 操作(1添加2修改3删除)
  48. /// </summary>
  49. public int? F_Action
  50. {
  51. set { _f_action = value; }
  52. get { return _f_action; }
  53. }
  54. /// <summary>
  55. /// 知识库条目名称
  56. /// </summary>
  57. public string F_Title
  58. {
  59. set { _f_title = value; }
  60. get { return _f_title; }
  61. }
  62. /// <summary>
  63. /// 知识库条目内容
  64. /// </summary>
  65. public string F_Content
  66. {
  67. set { _f_content = value; }
  68. get { return _f_content; }
  69. }
  70. /// <summary>
  71. /// 描述
  72. /// </summary>
  73. public string F_Description
  74. {
  75. set { _f_description = value; }
  76. get { return _f_description; }
  77. }
  78. /// <summary>
  79. /// 附件地址(可多个)
  80. /// </summary>
  81. public string F_Url
  82. {
  83. set { _f_url = value; }
  84. get { return _f_url; }
  85. }
  86. /// <summary>
  87. /// 关键字
  88. /// </summary>
  89. public string F_KeyWords
  90. {
  91. set { _f_keywords = value; }
  92. get { return _f_keywords; }
  93. }
  94. /// <summary>
  95. /// 添加时间
  96. /// </summary>
  97. public DateTime? F_CreateOn
  98. {
  99. set { _f_createon = value; }
  100. get { return _f_createon; }
  101. }
  102. /// <summary>
  103. /// 添加人
  104. /// </summary>
  105. public int? F_CreateBy
  106. {
  107. set { _f_createby = value; }
  108. get { return _f_createby; }
  109. }
  110. /// <summary>
  111. /// 扩展
  112. /// </summary>
  113. public string F_Expand1
  114. {
  115. set { _f_expand1 = value; }
  116. get { return _f_expand1; }
  117. }
  118. /// <summary>
  119. /// 扩展2
  120. /// </summary>
  121. public string F_Expand2
  122. {
  123. set { _f_expand2 = value; }
  124. get { return _f_expand2; }
  125. }
  126. /// <summary>
  127. /// Int扩展
  128. /// </summary>
  129. public int? F_IntExpand1
  130. {
  131. set { _f_intexpand1 = value; }
  132. get { return _f_intexpand1; }
  133. }
  134. #endregion Model
  135. }
  136. }