人民医院API

T_IntegratedScheduling_Process.cs 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * T_IntegratedScheduling_Process.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: T_IntegratedScheduling_Process
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2022/10/20 10:20:04 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_IntegratedScheduling_Process:实体类(属性说明自动提取数据库字段的描述信息)
  22. /// </summary>
  23. [Serializable]
  24. public partial class T_IntegratedScheduling_Process
  25. {
  26. public T_IntegratedScheduling_Process()
  27. {}
  28. #region Model
  29. private int _f_processid;
  30. private string _f_workordercode;
  31. private string _f_dealman;
  32. private string _f_dealdept;
  33. private DateTime? _f_processingtime;
  34. private string _f_result;
  35. private string _f_file;
  36. private string _f_returnreason;
  37. private int? _f_isdelete;
  38. private DateTime? _f_updatetime;
  39. /// <summary>
  40. ///
  41. /// </summary>
  42. public int F_ProcessId
  43. {
  44. set{ _f_processid=value;}
  45. get{return _f_processid;}
  46. }
  47. /// <summary>
  48. ///
  49. /// </summary>
  50. public string F_WorkOrderCode
  51. {
  52. set{ _f_workordercode=value;}
  53. get{return _f_workordercode;}
  54. }
  55. /// <summary>
  56. ///
  57. /// </summary>
  58. public string F_DealMan
  59. {
  60. set{ _f_dealman=value;}
  61. get{return _f_dealman;}
  62. }
  63. /// <summary>
  64. ///
  65. /// </summary>
  66. public string F_DealDept
  67. {
  68. set{ _f_dealdept=value;}
  69. get{return _f_dealdept;}
  70. }
  71. /// <summary>
  72. ///
  73. /// </summary>
  74. public DateTime? F_ProcessingTime
  75. {
  76. set{ _f_processingtime=value;}
  77. get{return _f_processingtime;}
  78. }
  79. /// <summary>
  80. ///
  81. /// </summary>
  82. public string F_Result
  83. {
  84. set{ _f_result=value;}
  85. get{return _f_result;}
  86. }
  87. /// <summary>
  88. ///
  89. /// </summary>
  90. public string F_File
  91. {
  92. set{ _f_file=value;}
  93. get{return _f_file;}
  94. }
  95. /// <summary>
  96. ///
  97. /// </summary>
  98. public string F_ReturnReason
  99. {
  100. set{ _f_returnreason=value;}
  101. get{return _f_returnreason;}
  102. }
  103. /// <summary>
  104. ///
  105. /// </summary>
  106. public int? F_Isdelete
  107. {
  108. set{ _f_isdelete=value;}
  109. get{return _f_isdelete;}
  110. }
  111. /// <summary>
  112. ///
  113. /// </summary>
  114. public DateTime? F_UpdateTime
  115. {
  116. set{ _f_updatetime=value;}
  117. get{return _f_updatetime;}
  118. }
  119. #endregion Model
  120. }
  121. }