Przeglądaj źródła

fixed: workflow basedata

xf 2 lat temu
rodzic
commit
7b059e0bc9

+ 1 - 1
src/Hotline.Api/Controllers/WorkflowController.cs

@@ -351,7 +351,7 @@ public class WorkflowController : BaseController
     {
         return new
         {
-            ModuleOptions = WorkflowModule.Modules,
+            ModuleOptions = WorkflowModule.Modules.ToList(),
             GenderOptions = EnumExts.GetDescriptions<EHandlerType>(),
             CountersignMode = EnumExts.GetDescriptions<ECountersignMode>().Where(d => d.Key != 1)
         };

+ 12 - 0
src/Hotline.Share/Dtos/Order/QueryOrderDto.cs

@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Hotline.Share.Dtos.Order
+{
+    public class QueryOrderDto
+    {
+    }
+}