人民医院API

T_FaultRepair_Base.cs 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * T_FaultRepair_Base.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: T_FaultRepair_Base
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2022/8/16 16:36:23 N/A 初版
  10. *
  11. * Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
  12. *┌──────────────────────────────────┐
  13. *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
  14. *│ 版权所有:动软卓越(北京)科技有限公司              │
  15. *└──────────────────────────────────┘
  16. */
  17. using System;
  18. namespace RMYY_CallCenter_Api.Model
  19. {
  20. /// <summary>
  21. /// T_FaultRepair_Base:实体类(属性说明自动提取数据库字段的描述信息)
  22. /// </summary>
  23. [Serializable]
  24. public partial class T_FaultRepair_Base
  25. {
  26. public T_FaultRepair_Base()
  27. {}
  28. #region Model
  29. private int _f_workorderid;
  30. private string _f_workordercode;
  31. private string _f_applicant;
  32. private string _f_applicationdept;
  33. private string _f_applicantsphone;
  34. private string _f_phone;
  35. private string _f_workordercategory;
  36. private string _f_content;
  37. private string _f_placeofrepair;
  38. private int? _f_workorderstate;
  39. private string _f_maintenancer;
  40. private string _f_maintenancedept;
  41. private DateTime? _f_assigntime;
  42. private DateTime? _f_endtime;
  43. private DateTime? _f_updatetime;
  44. private DateTime? _f_deadline;
  45. private string _f_createuser;
  46. private DateTime? _f_createtime;
  47. private string _f_createuserdept;
  48. private string _f_file;
  49. private int? _f_returnnum;
  50. private string _f_internalworkordercode;
  51. private string _f_externalworkordercode;
  52. private int? _f_isdelete=0;
  53. private int? _f_callrecordid;
  54. private int? _f_leaverecordid;
  55. private string _f_callid;
  56. private int? _f_score;
  57. private DateTime? _f_stoptime;
  58. private DateTime? _f_arrivetime;
  59. private string _f_assignuser;
  60. public string F_AssignUser
  61. {
  62. set { _f_assignuser = value; }
  63. get { return _f_assignuser; }
  64. }
  65. //到达时间
  66. public DateTime? F_ArriveTime
  67. {
  68. set { _f_arrivetime = value; }
  69. get { return _f_arrivetime; }
  70. }
  71. //挂起时间
  72. public DateTime? F_StopTime
  73. {
  74. set { _f_stoptime = value; }
  75. get { return _f_stoptime; }
  76. }
  77. private int? _f_isstop = 0;
  78. public int? F_IsStop
  79. {
  80. set { _f_isstop = value; }
  81. get { return _f_isstop; }
  82. }
  83. public int? F_Score
  84. {
  85. set { _f_score = value; }
  86. get { return _f_score; }
  87. }
  88. public string F_CallId
  89. {
  90. set { _f_callid = value; }
  91. get { return _f_callid; }
  92. }
  93. public int? F_LeaveRecordId
  94. {
  95. set { _f_leaverecordid = value; }
  96. get { return _f_leaverecordid; }
  97. }
  98. public int? F_CallRecordId
  99. {
  100. set { _f_callrecordid = value; }
  101. get { return _f_callrecordid; }
  102. }
  103. /// <summary>
  104. ///
  105. /// </summary>
  106. public int F_WorkOrderId
  107. {
  108. set{ _f_workorderid=value;}
  109. get{return _f_workorderid;}
  110. }
  111. /// <summary>
  112. ///
  113. /// </summary>
  114. public string F_WorkOrderCode
  115. {
  116. set{ _f_workordercode=value;}
  117. get{return _f_workordercode;}
  118. }
  119. /// <summary>
  120. ///
  121. /// </summary>
  122. public string F_Applicant
  123. {
  124. set{ _f_applicant=value;}
  125. get{return _f_applicant;}
  126. }
  127. /// <summary>
  128. ///
  129. /// </summary>
  130. public string F_ApplicationDept
  131. {
  132. set{ _f_applicationdept=value;}
  133. get{return _f_applicationdept;}
  134. }
  135. /// <summary>
  136. ///
  137. /// </summary>
  138. public string F_Applicantsphone
  139. {
  140. set{ _f_applicantsphone=value;}
  141. get{return _f_applicantsphone;}
  142. }
  143. /// <summary>
  144. ///
  145. /// </summary>
  146. public string F_Phone
  147. {
  148. set{ _f_phone=value;}
  149. get{return _f_phone;}
  150. }
  151. /// <summary>
  152. ///
  153. /// </summary>
  154. public string F_WorkOrderCategory
  155. {
  156. set{ _f_workordercategory=value;}
  157. get{return _f_workordercategory;}
  158. }
  159. /// <summary>
  160. ///
  161. /// </summary>
  162. public string F_Content
  163. {
  164. set{ _f_content=value;}
  165. get{return _f_content;}
  166. }
  167. /// <summary>
  168. ///
  169. /// </summary>
  170. public string F_PlaceOfRepair
  171. {
  172. set{ _f_placeofrepair=value;}
  173. get{return _f_placeofrepair;}
  174. }
  175. /// <summary>
  176. ///
  177. /// </summary>
  178. public int? F_WorkOrderState
  179. {
  180. set{ _f_workorderstate=value;}
  181. get{return _f_workorderstate;}
  182. }
  183. /// <summary>
  184. ///
  185. /// </summary>
  186. public string F_Maintenancer
  187. {
  188. set{ _f_maintenancer=value;}
  189. get{return _f_maintenancer;}
  190. }
  191. /// <summary>
  192. ///
  193. /// </summary>
  194. public string F_MaintenanceDept
  195. {
  196. set{ _f_maintenancedept=value;}
  197. get{return _f_maintenancedept;}
  198. }
  199. /// <summary>
  200. ///
  201. /// </summary>
  202. public DateTime? F_AssignTime
  203. {
  204. set{ _f_assigntime=value;}
  205. get{return _f_assigntime;}
  206. }
  207. /// <summary>
  208. ///
  209. /// </summary>
  210. public DateTime? F_Endtime
  211. {
  212. set{ _f_endtime=value;}
  213. get{return _f_endtime;}
  214. }
  215. /// <summary>
  216. ///
  217. /// </summary>
  218. public DateTime? F_UpdateTime
  219. {
  220. set{ _f_updatetime=value;}
  221. get{return _f_updatetime;}
  222. }
  223. /// <summary>
  224. ///
  225. /// </summary>
  226. public DateTime? F_Deadline
  227. {
  228. set{ _f_deadline=value;}
  229. get{return _f_deadline;}
  230. }
  231. /// <summary>
  232. ///
  233. /// </summary>
  234. public string F_CreateUser
  235. {
  236. set{ _f_createuser=value;}
  237. get{return _f_createuser;}
  238. }
  239. /// <summary>
  240. ///
  241. /// </summary>
  242. public DateTime? F_CreateTime
  243. {
  244. set{ _f_createtime=value;}
  245. get{return _f_createtime;}
  246. }
  247. /// <summary>
  248. ///
  249. /// </summary>
  250. public string F_CreateUserDept
  251. {
  252. set{ _f_createuserdept=value;}
  253. get{return _f_createuserdept;}
  254. }
  255. /// <summary>
  256. ///
  257. /// </summary>
  258. public string F_File
  259. {
  260. set{ _f_file=value;}
  261. get{return _f_file;}
  262. }
  263. /// <summary>
  264. ///
  265. /// </summary>
  266. public int? F_ReturnNum
  267. {
  268. set{ _f_returnnum=value;}
  269. get{return _f_returnnum;}
  270. }
  271. /// <summary>
  272. ///
  273. /// </summary>
  274. public string F_InternalWorkOrderCode
  275. {
  276. set{ _f_internalworkordercode=value;}
  277. get{return _f_internalworkordercode;}
  278. }
  279. /// <summary>
  280. ///
  281. /// </summary>
  282. public string F_ExternalWorkOrderCode
  283. {
  284. set{ _f_externalworkordercode=value;}
  285. get{return _f_externalworkordercode;}
  286. }
  287. /// <summary>
  288. ///
  289. /// </summary>
  290. public int? F_IsDelete
  291. {
  292. set{ _f_isdelete=value;}
  293. get{return _f_isdelete;}
  294. }
  295. #endregion Model
  296. }
  297. }