From a9cddcd1e3e8ae51f68a885326cfce3247fdbd66 Mon Sep 17 00:00:00 2001
From: yyk <2336760928@qq.com>
Date: 星期五, 23 八月 2024 09:20:47 +0800
Subject: [PATCH] 调整批量添加储位接口。

---
 Wms/WMS.BLL/SysServer/InterfaceServer.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Wms/WMS.BLL/SysServer/InterfaceServer.cs b/Wms/WMS.BLL/SysServer/InterfaceServer.cs
index 20bc4aa..b81ef8e 100644
--- a/Wms/WMS.BLL/SysServer/InterfaceServer.cs
+++ b/Wms/WMS.BLL/SysServer/InterfaceServer.cs
@@ -39,7 +39,7 @@
         /// <param name="model"></param>
         /// <param name="count"></param>
         /// <returns></returns>
-        public async Task<SqlSugarPagedList<InterfaceDto>> GetInterfaceList(InterfaceVm model)
+        public async Task<SqlSugarPagedList> GetInterfaceList(InterfaceVm model)
         {
             return await Db.Queryable<SysInterface>()
                            .LeftJoin<SysUserInfor>((a, b) => a.CreateUser == b.Id)
@@ -63,7 +63,7 @@
         /// <param name="model"></param>
         /// <param name="count"></param>
         /// <returns></returns>
-        public async Task<SqlSugarPagedList<InterfaceDetailDto>> GetInterfaceDetailList(InterfaceDetailVm model)
+        public async Task<SqlSugarPagedList> GetInterfaceDetailList(InterfaceDetailVm model)
         {
             return await Db.Queryable<SysInterfaceDetail>()
                            .LeftJoin<SysUserInfor>((a, b) => a.CreateUser == b.Id)

--
Gitblit v1.8.0