IM12345_Api demo - 代码源于 商丘市12345项目

T_Bus_AssignedItemInfo.cs 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. using System;
  2. namespace CallCenterApi.Model
  3. {
  4. /// <summary>
  5. /// 交办表
  6. /// </summary>
  7. [Serializable]
  8. public partial class T_Bus_AssignedItemInfo
  9. {
  10. public T_Bus_AssignedItemInfo()
  11. { }
  12. #region Model
  13. private int _f_id;
  14. private string _f_workorderid;
  15. private int? _f_assignedid;
  16. private int? _f_deptid;
  17. private string _f_assignedopinion;
  18. private string _f_remark;
  19. private string _f_createuser;
  20. private DateTime? _f_createtime;
  21. private int? _f_issure;
  22. private int? _f_state;
  23. private DateTime? _f_suretime;
  24. private int? _f_isdelete;
  25. private string _f_deleteuser;
  26. private DateTime? _f_deletetime;
  27. private string _f_sureuser;
  28. private DateTime? _f_feedbacktime;
  29. private DateTime? _f_limittime;
  30. private int? _f_isoverdue;
  31. private string _f_file;
  32. private int? _f_type;
  33. /// <summary>
  34. /// 交办信息id,自增
  35. /// </summary>
  36. public int F_Id
  37. {
  38. set { _f_id = value; }
  39. get { return _f_id; }
  40. }
  41. /// <summary>
  42. /// 登记流水号
  43. /// </summary>
  44. public string F_WorkOrderId
  45. {
  46. set { _f_workorderid = value; }
  47. get { return _f_workorderid; }
  48. }
  49. /// <summary>
  50. /// 交办id
  51. /// </summary>
  52. public int? F_AssignedId
  53. {
  54. set { _f_assignedid = value; }
  55. get { return _f_assignedid; }
  56. }
  57. /// <summary>
  58. /// 单位
  59. /// </summary>
  60. public int? F_DeptId
  61. {
  62. set { _f_deptid = value; }
  63. get { return _f_deptid; }
  64. }
  65. /// <summary>
  66. /// 交办意见
  67. /// </summary>
  68. public string F_AssignedOpinion
  69. {
  70. set { _f_assignedopinion = value; }
  71. get { return _f_assignedopinion; }
  72. }
  73. /// <summary>
  74. /// 备注
  75. /// </summary>
  76. public string F_Remark
  77. {
  78. set { _f_remark = value; }
  79. get { return _f_remark; }
  80. }
  81. /// <summary>
  82. /// 添加人(交办人)
  83. /// </summary>
  84. public string F_CreateUser
  85. {
  86. set { _f_createuser = value; }
  87. get { return _f_createuser; }
  88. }
  89. /// <summary>
  90. /// 交办时间
  91. /// </summary>
  92. public DateTime? F_CreateTime
  93. {
  94. set { _f_createtime = value; }
  95. get { return _f_createtime; }
  96. }
  97. /// <summary>
  98. /// 是否已读标志(0:未查收,1:已查收,2:申请退回,3:已退回)
  99. /// </summary>
  100. public int? F_IsSure
  101. {
  102. set { _f_issure = value; }
  103. get { return _f_issure; }
  104. }
  105. /// <summary>
  106. /// 是否处理(0:草稿,1:正式)
  107. /// </summary>
  108. public int? F_State
  109. {
  110. set { _f_state = value; }
  111. get { return _f_state; }
  112. }
  113. /// <summary>
  114. /// 查收时间
  115. /// </summary>
  116. public DateTime? F_SureTime
  117. {
  118. set { _f_suretime = value; }
  119. get { return _f_suretime; }
  120. }
  121. /// <summary>
  122. ///
  123. /// </summary>
  124. public int? F_IsDelete
  125. {
  126. set { _f_isdelete = value; }
  127. get { return _f_isdelete; }
  128. }
  129. /// <summary>
  130. ///
  131. /// </summary>
  132. public string F_DeleteUser
  133. {
  134. set { _f_deleteuser = value; }
  135. get { return _f_deleteuser; }
  136. }
  137. /// <summary>
  138. ///
  139. /// </summary>
  140. public DateTime? F_DeleteTime
  141. {
  142. set { _f_deletetime = value; }
  143. get { return _f_deletetime; }
  144. }
  145. /// <summary>
  146. /// 查收人
  147. /// </summary>
  148. public string F_SureUser
  149. {
  150. set { _f_sureuser = value; }
  151. get { return _f_sureuser; }
  152. }
  153. /// <summary>
  154. /// 反馈时间
  155. /// </summary>
  156. public DateTime? F_FeedbackTime
  157. {
  158. set { _f_feedbacktime = value; }
  159. get { return _f_feedbacktime; }
  160. }
  161. /// <summary>
  162. /// 办理时限
  163. /// </summary>
  164. public DateTime? F_LimitTime
  165. {
  166. set { _f_limittime = value; }
  167. get { return _f_limittime; }
  168. }
  169. /// <summary>
  170. /// 是否超时
  171. /// </summary>
  172. public int? F_IsOverdue
  173. {
  174. set { _f_isoverdue = value; }
  175. get { return _f_isoverdue; }
  176. }
  177. /// <summary>
  178. ///
  179. /// </summary>
  180. public string F_File
  181. {
  182. set { _f_file = value; }
  183. get { return _f_file; }
  184. }
  185. /// <summary>
  186. /// 1主办 2协办
  187. /// </summary>
  188. public int? F_Type
  189. {
  190. set { _f_type = value; }
  191. get { return _f_type; }
  192. }
  193. #endregion Model
  194. }
  195. }