|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+using System;
|
|
|
2
|
+using System.Collections.Generic;
|
|
|
3
|
+using System.Text;
|
|
|
4
|
+
|
|
|
5
|
+namespace System.Model.Bus
|
|
|
6
|
+{
|
|
|
7
|
+ [Serializable]
|
|
|
8
|
+ public partial class T_Bus_Orderlogs
|
|
|
9
|
+ {
|
|
|
10
|
+ public T_Bus_Orderlogs()
|
|
|
11
|
+ { }
|
|
|
12
|
+ #region Model
|
|
|
13
|
+ private int _f_id;
|
|
|
14
|
+ private string _f_woid;
|
|
|
15
|
+ private int? _f_wostate;
|
|
|
16
|
+ private string _f_optcontent;
|
|
|
17
|
+ private string _f_nextuser;
|
|
|
18
|
+ private string _f_nextdept;
|
|
|
19
|
+ private string _f_createuser;
|
|
|
20
|
+ private DateTime? _f_createtime;
|
|
|
21
|
+ private int _f_isused = 1;
|
|
|
22
|
+ /// <summary>
|
|
|
23
|
+ /// auto_increment
|
|
|
24
|
+ /// </summary>
|
|
|
25
|
+ public int F_ID
|
|
|
26
|
+ {
|
|
|
27
|
+ set { _f_id = value; }
|
|
|
28
|
+ get { return _f_id; }
|
|
|
29
|
+ }
|
|
|
30
|
+ /// <summary>
|
|
|
31
|
+ /// 订单编号
|
|
|
32
|
+ /// </summary>
|
|
|
33
|
+ public string F_WoID
|
|
|
34
|
+ {
|
|
|
35
|
+ set { _f_woid = value; }
|
|
|
36
|
+ get { return _f_woid; }
|
|
|
37
|
+ }
|
|
|
38
|
+ /// <summary>
|
|
|
39
|
+ /// 工单状态
|
|
|
40
|
+ /// </summary>
|
|
|
41
|
+ public int? F_WoState
|
|
|
42
|
+ {
|
|
|
43
|
+ set { _f_wostate = value; }
|
|
|
44
|
+ get { return _f_wostate; }
|
|
|
45
|
+ }
|
|
|
46
|
+ /// <summary>
|
|
|
47
|
+ /// 操作内容
|
|
|
48
|
+ /// </summary>
|
|
|
49
|
+ public string F_OptContent
|
|
|
50
|
+ {
|
|
|
51
|
+ set { _f_optcontent = value; }
|
|
|
52
|
+ get { return _f_optcontent; }
|
|
|
53
|
+ }
|
|
|
54
|
+ /// <summary>
|
|
|
55
|
+ /// 下一步操作人
|
|
|
56
|
+ /// </summary>
|
|
|
57
|
+ public string F_NextUser
|
|
|
58
|
+ {
|
|
|
59
|
+ set { _f_nextuser = value; }
|
|
|
60
|
+ get { return _f_nextuser; }
|
|
|
61
|
+ }
|
|
|
62
|
+ /// <summary>
|
|
|
63
|
+ /// 下一步操作部门
|
|
|
64
|
+ /// </summary>
|
|
|
65
|
+ public string F_NextDept
|
|
|
66
|
+ {
|
|
|
67
|
+ set { _f_nextdept = value; }
|
|
|
68
|
+ get { return _f_nextdept; }
|
|
|
69
|
+ }
|
|
|
70
|
+ /// <summary>
|
|
|
71
|
+ /// 创建人
|
|
|
72
|
+ /// </summary>
|
|
|
73
|
+ public string F_CreateUser
|
|
|
74
|
+ {
|
|
|
75
|
+ set { _f_createuser = value; }
|
|
|
76
|
+ get { return _f_createuser; }
|
|
|
77
|
+ }
|
|
|
78
|
+ /// <summary>
|
|
|
79
|
+ /// 创建时间
|
|
|
80
|
+ /// </summary>
|
|
|
81
|
+ public DateTime? F_CreateTime
|
|
|
82
|
+ {
|
|
|
83
|
+ set { _f_createtime = value; }
|
|
|
84
|
+ get { return _f_createtime; }
|
|
|
85
|
+ }
|
|
|
86
|
+ public int F_IsUsed
|
|
|
87
|
+ {
|
|
|
88
|
+ set { _f_isused = value; }
|
|
|
89
|
+ get { return _f_isused; }
|
|
|
90
|
+ }
|
|
|
91
|
+ #endregion Model
|
|
|
92
|
+
|
|
|
93
|
+ }
|
|
|
94
|
+}
|