三元财务API

T_Wo_WorkOrderItem_New.cs 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.Model
  7. {
  8. /// <summary>
  9. /// T_Wo_WorkOrderItem_New:实体类(属性说明自动提取数据库字段的描述信息)
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_Wo_WorkOrderItem_New
  13. {
  14. public T_Wo_WorkOrderItem_New()
  15. { }
  16. #region Model
  17. private long _f_id;
  18. private long _f_woid;
  19. private int? _f_wostate;
  20. private int? _f_itemtype;
  21. private int? _f_opttype;
  22. private string _f_optcontent;
  23. private string _f_nextuser;
  24. private int? _f_nextdept;
  25. private int? _f_isused = 0;
  26. private string _f_createuser;
  27. private DateTime? _f_createtime;
  28. /// <summary>
  29. /// 工单记录ID
  30. /// </summary>
  31. public long F_ID
  32. {
  33. set { _f_id = value; }
  34. get { return _f_id; }
  35. }
  36. /// <summary>
  37. /// 工单ID
  38. /// </summary>
  39. public long F_WoID
  40. {
  41. set { _f_woid = value; }
  42. get { return _f_woid; }
  43. }
  44. /// <summary>
  45. /// 工单状态
  46. /// </summary>
  47. public int? F_WoState
  48. {
  49. set { _f_wostate = value; }
  50. get { return _f_wostate; }
  51. }
  52. /// <summary>
  53. /// 记录类型 1工单处理,2工单催办
  54. /// </summary>
  55. public int? F_ItemType
  56. {
  57. get
  58. {
  59. return _f_itemtype;
  60. }
  61. set
  62. {
  63. _f_itemtype = value;
  64. }
  65. }
  66. /// <summary>
  67. /// 操作类型
  68. /// </summary>
  69. public int? F_OptType
  70. {
  71. set { _f_opttype = value; }
  72. get { return _f_opttype; }
  73. }
  74. /// <summary>
  75. /// 操作内容
  76. /// </summary>
  77. public string F_OptContent
  78. {
  79. set { _f_optcontent = value; }
  80. get { return _f_optcontent; }
  81. }
  82. /// <summary>
  83. /// 下一步操作人
  84. /// </summary>
  85. public string F_NextUser
  86. {
  87. set { _f_nextuser = value; }
  88. get { return _f_nextuser; }
  89. }
  90. /// <summary>
  91. /// 下一步操作部门
  92. /// </summary>
  93. public int? F_NextDept
  94. {
  95. set { _f_nextdept = value; }
  96. get { return _f_nextdept; }
  97. }
  98. /// <summary>
  99. /// 是否在用,0是 1否
  100. /// </summary>
  101. public int? F_IsUsed
  102. {
  103. set { _f_isused = value; }
  104. get { return _f_isused; }
  105. }
  106. /// <summary>
  107. /// 创建人
  108. /// </summary>
  109. public string F_CreateUser
  110. {
  111. set { _f_createuser = value; }
  112. get { return _f_createuser; }
  113. }
  114. /// <summary>
  115. /// 创建时间
  116. /// </summary>
  117. public DateTime? F_CreateTime
  118. {
  119. set { _f_createtime = value; }
  120. get { return _f_createtime; }
  121. }
  122. #endregion Model
  123. }
  124. }