No Description

T_Bus_SubmitSuper.cs 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. using System;
  2. namespace CallCenterApi.Model
  3. {
  4. /// <summary>
  5. /// 呈批表
  6. /// </summary>
  7. [Serializable]
  8. public partial class T_Bus_SubmitSuper
  9. {
  10. public T_Bus_SubmitSuper()
  11. { }
  12. #region Model
  13. private int _f_id;
  14. private string _f_workorderid;
  15. private string _f_batchreason;
  16. private string _f_superopinion;
  17. private string _f_createuser;
  18. private string _f_dealuser;
  19. private DateTime? _f_createtime;
  20. private DateTime? _f_dealtime;
  21. private int? _f_state;
  22. private string _f_backtype;
  23. private string _f_backreason;
  24. private int? _f_isdelete;
  25. private string _f_deleteuser;
  26. private DateTime? _f_deletetime;
  27. private string _f_file;
  28. private int? _f_type;
  29. /// <summary>
  30. /// 呈批id,自增
  31. /// </summary>
  32. public int F_Id
  33. {
  34. set { _f_id = value; }
  35. get { return _f_id; }
  36. }
  37. /// <summary>
  38. /// 登记流水号
  39. /// </summary>
  40. public string F_WorkOrderId
  41. {
  42. set { _f_workorderid = value; }
  43. get { return _f_workorderid; }
  44. }
  45. /// <summary>
  46. /// 呈批原因
  47. /// </summary>
  48. public string F_BatchReason
  49. {
  50. set { _f_batchreason = value; }
  51. get { return _f_batchreason; }
  52. }
  53. /// <summary>
  54. /// 领导批示
  55. /// </summary>
  56. public string F_SuperOpinion
  57. {
  58. set { _f_superopinion = value; }
  59. get { return _f_superopinion; }
  60. }
  61. /// <summary>
  62. /// 呈批人
  63. /// </summary>
  64. public string F_CreateUser
  65. {
  66. set { _f_createuser = value; }
  67. get { return _f_createuser; }
  68. }
  69. /// <summary>
  70. /// 审批人工号
  71. /// </summary>
  72. public string F_DealUser
  73. {
  74. set { _f_dealuser = value; }
  75. get { return _f_dealuser; }
  76. }
  77. /// <summary>
  78. /// 呈批时间
  79. /// </summary>
  80. public DateTime? F_CreateTime
  81. {
  82. set { _f_createtime = value; }
  83. get { return _f_createtime; }
  84. }
  85. /// <summary>
  86. /// 审批时间
  87. /// </summary>
  88. public DateTime? F_DealTime
  89. {
  90. set { _f_dealtime = value; }
  91. get { return _f_dealtime; }
  92. }
  93. /// <summary>
  94. /// 审批状态(0:草稿,1:正式,2:退回)
  95. /// </summary>
  96. public int? F_State
  97. {
  98. set { _f_state = value; }
  99. get { return _f_state; }
  100. }
  101. /// <summary>
  102. /// 退回类型
  103. /// </summary>
  104. public string F_BackType
  105. {
  106. set { _f_backtype = value; }
  107. get { return _f_backtype; }
  108. }
  109. /// <summary>
  110. /// 退回原因
  111. /// </summary>
  112. public string F_BackReason
  113. {
  114. set { _f_backreason = value; }
  115. get { return _f_backreason; }
  116. }
  117. /// <summary>
  118. ///
  119. /// </summary>
  120. public int? F_IsDelete
  121. {
  122. set { _f_isdelete = value; }
  123. get { return _f_isdelete; }
  124. }
  125. /// <summary>
  126. ///
  127. /// </summary>
  128. public string F_DeleteUser
  129. {
  130. set { _f_deleteuser = value; }
  131. get { return _f_deleteuser; }
  132. }
  133. /// <summary>
  134. ///
  135. /// </summary>
  136. public DateTime? F_DeleteTime
  137. {
  138. set { _f_deletetime = value; }
  139. get { return _f_deletetime; }
  140. }
  141. /// <summary>
  142. /// 附件
  143. /// </summary>
  144. public string F_File
  145. {
  146. set { _f_file = value; }
  147. get { return _f_file; }
  148. }
  149. /// <summary>
  150. /// 1领导批示 2市长指示
  151. /// </summary>
  152. public int? F_Type
  153. {
  154. set { _f_type = value; }
  155. get { return _f_type; }
  156. }
  157. #endregion Model
  158. }
  159. }