diff --git a/VOL.WebApi/Startup.cs b/VOL.WebApi/Startup.cs index f613394..e7f6c2b 100644 --- a/VOL.WebApi/Startup.cs +++ b/VOL.WebApi/Startup.cs @@ -268,7 +268,7 @@ namespace VOL.WebApi filterFields: x => new { x.OrderType, x.Qty, x.CreateID, x.SellNo }, //审批过滤条件的字段 formFields: x => new { x.OrderType, x.TranNo, x.Qty, x.SellNo, x.Creator }//审批界面显示的字段 ) - .Use() + .Use() //run方法必须写在最后位置 .Run(); }