Pārlūkot izejas kodu

订单批量提交,销售批量审核金额,订单流转记录

duhongyu 5 gadi atpakaļ
vecāks
revīzija
643bba2a62

+ 13 - 0
代码/System.IRepositories/Bus/IBus_OrderlogsRepository.cs

@@ -0,0 +1,13 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.Common;
4
+using System.Model.Bus;
5
+using System.Text;
6
+
7
+namespace System.IRepositories.Bus
8
+{
9
+   
10
+    public interface IBus_OrderlogsRepository : IRepository<T_Bus_Orderlogs>
11
+    {
12
+    }
13
+}

+ 94 - 0
代码/System.Model/Bus/T_Bus_Orderlogs.cs

@@ -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
+}

+ 14 - 0
代码/System.Repositories/Bus/Bus_OrderlogsRepository.cs

@@ -0,0 +1,14 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.Common;
4
+using System.IRepositories.Bus;
5
+using System.Model.Bus;
6
+using System.Text;
7
+
8
+namespace System.Repositories.Bus
9
+{
10
+   
11
+    public class Bus_OrderlogsRepository : BaseRepository<T_Bus_Orderlogs>, IBus_OrderlogsRepository
12
+    {
13
+    }
14
+}

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 272 - 148
代码/TVShoppingCallCenter_ZLJ/Controllers/Order/OrderController.cs


+ 3 - 1
代码/TVShoppingCallCenter_ZLJ/Startup.cs

@@ -36,6 +36,8 @@ using System.IRepositories.Call;
36 36
 using System.Repositories.Call;
37 37
 using System.IRepositories.Cus;
38 38
 using System.Repositories.Cus;
39
+using System.IRepositories.Bus;
40
+using System.Repositories.Bus;
39 41
 
40 42
 namespace TVShoppingCallCenter_ZLJ
41 43
 {
@@ -213,7 +215,7 @@ namespace TVShoppingCallCenter_ZLJ
213 215
             services.AddTransient<Ipoint_agentRepository, point_agentRepository>();
214 216
             services.AddTransient<ISys_BottomNumberRepository, Sys_BottomNumberRepository>();
215 217
             services.AddTransient<ICus_MembershipRepository, Cus_MembershipRepository>();
216
-            
218
+            services.AddTransient<IBus_OrderlogsRepository, Bus_OrderlogsRepository>();
217 219
             #endregion
218 220
 
219 221