人民医院API

T_Sys_Knowledge.cs 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. /// <summary>
  9. /// T_Sys_Knowledge:实体类(属性说明自动提取数据库字段的描述信息)
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_Sys_Knowledge
  13. {
  14. public T_Sys_Knowledge()
  15. { }
  16. #region Model
  17. private int _f_id;
  18. private int? _f_typeid;
  19. private string _f_title;
  20. private string _f_content;
  21. private string _f_description;
  22. private string _f_keywords;
  23. private string _f_typename;
  24. private string _f_files;
  25. private string _f_createcode;
  26. private string _f_createname;
  27. private DateTime? _f_createtime;
  28. private DateTime? _f_modifytime;
  29. private string _f_modifycode;
  30. private string _f_modifyname;
  31. private int? _f_isdel = 0;
  32. /// <summary>
  33. /// 主键id
  34. /// </summary>
  35. public int F_Id
  36. {
  37. set { _f_id = value; }
  38. get { return _f_id; }
  39. }
  40. /// <summary>
  41. /// 工单类型id
  42. /// </summary>
  43. public int? F_TypeId
  44. {
  45. set { _f_typeid = value; }
  46. get { return _f_typeid; }
  47. }
  48. /// <summary>
  49. /// 标题
  50. /// </summary>
  51. public string F_Title
  52. {
  53. set { _f_title = value; }
  54. get { return _f_title; }
  55. }
  56. /// <summary>
  57. /// 内容
  58. /// </summary>
  59. public string F_Content
  60. {
  61. set { _f_content = value; }
  62. get { return _f_content; }
  63. }
  64. /// <summary>
  65. /// 描述
  66. /// </summary>
  67. public string F_Description
  68. {
  69. set { _f_description = value; }
  70. get { return _f_description; }
  71. }
  72. /// <summary>
  73. /// 关键字
  74. /// </summary>
  75. public string F_KeyWords
  76. {
  77. set { _f_keywords = value; }
  78. get { return _f_keywords; }
  79. }
  80. /// <summary>
  81. /// 工单类型名称
  82. /// </summary>
  83. public string F_TypeName
  84. {
  85. set { _f_typename = value; }
  86. get { return _f_typename; }
  87. }
  88. /// <summary>
  89. /// 附件id
  90. /// </summary>
  91. public string F_Files
  92. {
  93. set { _f_files = value; }
  94. get { return _f_files; }
  95. }
  96. /// <summary>
  97. /// 创建人
  98. /// </summary>
  99. public string F_CreateCode
  100. {
  101. set { _f_createcode = value; }
  102. get { return _f_createcode; }
  103. }
  104. /// <summary>
  105. /// 创建人姓名
  106. /// </summary>
  107. public string F_CreateName
  108. {
  109. set { _f_createname = value; }
  110. get { return _f_createname; }
  111. }
  112. /// <summary>
  113. /// 创建时间
  114. /// </summary>
  115. public DateTime? F_CreateTime
  116. {
  117. set { _f_createtime = value; }
  118. get { return _f_createtime; }
  119. }
  120. /// <summary>
  121. /// 修改时间
  122. /// </summary>
  123. public DateTime? F_ModifyTime
  124. {
  125. set { _f_modifytime = value; }
  126. get { return _f_modifytime; }
  127. }
  128. /// <summary>
  129. /// 修改人
  130. /// </summary>
  131. public string F_ModifyCode
  132. {
  133. set { _f_modifycode = value; }
  134. get { return _f_modifycode; }
  135. }
  136. /// <summary>
  137. /// 修改人姓名
  138. /// </summary>
  139. public string F_ModifyName
  140. {
  141. set { _f_modifyname = value; }
  142. get { return _f_modifyname; }
  143. }
  144. /// <summary>
  145. /// 是否删除
  146. /// </summary>
  147. public int? F_IsDel
  148. {
  149. set { _f_isdel = value; }
  150. get { return _f_isdel; }
  151. }
  152. #endregion Model
  153. }
  154. }