人民医院API

T_FaultRepair_OperationLog.cs 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * T_FaultRepair_OperationLog.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: T_FaultRepair_OperationLog
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2022/8/16 16:36:24 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_OperationLog:实体类(属性说明自动提取数据库字段的描述信息)
  22. /// </summary>
  23. [Serializable]
  24. public partial class T_FaultRepair_OperationLog
  25. {
  26. public T_FaultRepair_OperationLog()
  27. {}
  28. #region Model
  29. private int _f_operationid;
  30. private string _f_workordercode;
  31. private string _f_operator;
  32. private string _f_logcontent;
  33. private int? _f_operationtype;
  34. private DateTime? _f_operationtime= DateTime.Now;
  35. private DateTime? _f_updatetime;
  36. private int? _f_isdelete=0;
  37. private string _f_aboutreason;
  38. private int? _f_aboutkey;
  39. private string _f_enterreason;
  40. //1、返修 2、挂起、3、退单、延时 相关的原因
  41. public string F_AboutReason
  42. {
  43. set { _f_aboutreason = value; }
  44. get { return _f_aboutreason; }
  45. }
  46. /// <summary>
  47. /// 返修 2、挂起、3、退单、延时 原因的 key,这个是字典的key
  48. /// </summary>
  49. public int? F_AboutKey
  50. {
  51. set { _f_aboutkey = value; }
  52. get { return _f_aboutkey; }
  53. }
  54. public string F_EnterReason
  55. {
  56. set { _f_enterreason = value; }
  57. get { return _f_enterreason; }
  58. }
  59. /// <summary>
  60. ///
  61. /// </summary>
  62. public int F_OperationId
  63. {
  64. set{ _f_operationid=value;}
  65. get{return _f_operationid;}
  66. }
  67. /// <summary>
  68. ///
  69. /// </summary>
  70. public string F_WorkOrderCode
  71. {
  72. set{ _f_workordercode=value;}
  73. get{return _f_workordercode;}
  74. }
  75. /// <summary>
  76. ///
  77. /// </summary>
  78. public string F_Operator
  79. {
  80. set{ _f_operator=value;}
  81. get{return _f_operator;}
  82. }
  83. /// <summary>
  84. ///
  85. /// </summary>
  86. public string F_LogContent
  87. {
  88. set{ _f_logcontent=value;}
  89. get{return _f_logcontent;}
  90. }
  91. /// <summary>
  92. ///
  93. /// </summary>
  94. public int? F_OperationType
  95. {
  96. set{ _f_operationtype=value;}
  97. get{return _f_operationtype;}
  98. }
  99. /// <summary>
  100. ///
  101. /// </summary>
  102. public DateTime? F_OperationTime
  103. {
  104. set{ _f_operationtime=value;}
  105. get{return _f_operationtime;}
  106. }
  107. /// <summary>
  108. ///
  109. /// </summary>
  110. public DateTime? F_UpdateTime
  111. {
  112. set{ _f_updatetime=value;}
  113. get{return _f_updatetime;}
  114. }
  115. /// <summary>
  116. ///
  117. /// </summary>
  118. public int? F_Isdelete
  119. {
  120. set{ _f_isdelete=value;}
  121. get{return _f_isdelete;}
  122. }
  123. #endregion Model
  124. }
  125. }