人民医院API

T_Hos_WorkOrderItem.cs 4.0KB

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_Hos_WorkOrderItem:实体类(属性说明自动提取数据库字段的描述信息)
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_Hos_WorkOrderItem
  13. {
  14. public T_Hos_WorkOrderItem()
  15. { }
  16. #region Model
  17. private int _f_id;
  18. private int _f_woid;
  19. private int? _f_wostate;
  20. private int? _f_itemtype;
  21. private int? _f_opttype;
  22. private string _f_optcontent;
  23. private string _f_nextuser;
  24. private string _f_nextusername;
  25. private string _f_nexuserphon;
  26. private string _f_nextusertalkie;
  27. private int? _f_nextdeptid;
  28. private string _f_nextdeptname;
  29. private int? _f_isused;
  30. private string _f_createuser;
  31. private DateTime? _f_createtime;
  32. /// <summary>
  33. ///
  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_WoID
  44. {
  45. set { _f_woid = value; }
  46. get { return _f_woid; }
  47. }
  48. /// <summary>
  49. /// 工单状态
  50. /// </summary>
  51. public int? F_WoState
  52. {
  53. set { _f_wostate = value; }
  54. get { return _f_wostate; }
  55. }
  56. /// <summary>
  57. /// 记录类型 1工单处理,2工单催办
  58. /// </summary>
  59. public int? F_ItemType
  60. {
  61. set { _f_itemtype = value; }
  62. get { return _f_itemtype; }
  63. }
  64. /// <summary>
  65. /// 操作类型
  66. /// </summary>
  67. public int? F_OptType
  68. {
  69. set { _f_opttype = value; }
  70. get { return _f_opttype; }
  71. }
  72. /// <summary>
  73. /// 操作内容
  74. /// </summary>
  75. public string F_OptContent
  76. {
  77. set { _f_optcontent = value; }
  78. get { return _f_optcontent; }
  79. }
  80. /// <summary>
  81. /// 下一步操作人
  82. /// </summary>
  83. public string F_NextUser
  84. {
  85. set { _f_nextuser = value; }
  86. get { return _f_nextuser; }
  87. }
  88. /// <summary>
  89. /// 姓名
  90. /// </summary>
  91. public string F_NextUserName
  92. {
  93. set { _f_nextusername = value; }
  94. get { return _f_nextusername; }
  95. }
  96. /// <summary>
  97. /// 电话
  98. /// </summary>
  99. public string F_NexUserPhon
  100. {
  101. set { _f_nexuserphon = value; }
  102. get { return _f_nexuserphon; }
  103. }
  104. /// <summary>
  105. /// 对讲机
  106. /// </summary>
  107. public string F_NextUserTalkie
  108. {
  109. set { _f_nextusertalkie = value; }
  110. get { return _f_nextusertalkie; }
  111. }
  112. /// <summary>
  113. /// 下一步操作部门
  114. /// </summary>
  115. public int? F_NextDeptId
  116. {
  117. set { _f_nextdeptid = value; }
  118. get { return _f_nextdeptid; }
  119. }
  120. /// <summary>
  121. /// 部门名称
  122. /// </summary>
  123. public string F_NextDeptName
  124. {
  125. set { _f_nextdeptname = value; }
  126. get { return _f_nextdeptname; }
  127. }
  128. /// <summary>
  129. /// 是否在用,0是 1否
  130. /// </summary>
  131. public int? F_IsUsed
  132. {
  133. set { _f_isused = value; }
  134. get { return _f_isused; }
  135. }
  136. /// <summary>
  137. /// 创建人
  138. /// </summary>
  139. public string F_CreateUser
  140. {
  141. set { _f_createuser = value; }
  142. get { return _f_createuser; }
  143. }
  144. /// <summary>
  145. /// 创建时间
  146. /// </summary>
  147. public DateTime? F_CreateTime
  148. {
  149. set { _f_createtime = value; }
  150. get { return _f_createtime; }
  151. }
  152. #endregion Model
  153. }
  154. }