From 5c40d83463c3db4455985f0302b10b79c63af23a Mon Sep 17 00:00:00 2001 From: bklLiudl <673013083@qq.com> Date: 星期四, 22 八月 2024 09:14:22 +0800 Subject: [PATCH] Merge branch 'master' into Liudl --- Wms/WMS.IBLL/ISysServer/IInterfaceServer.cs | 14 ++++++++------ 1 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Wms/WMS.IBLL/ISysServer/IInterfaceServer.cs b/Wms/WMS.IBLL/ISysServer/IInterfaceServer.cs index 1adf179..cb50cac 100644 --- a/Wms/WMS.IBLL/ISysServer/IInterfaceServer.cs +++ b/Wms/WMS.IBLL/ISysServer/IInterfaceServer.cs @@ -3,6 +3,8 @@ using System; using System.Collections.Generic; using System.Text; +using System.Threading.Tasks; +using Utility; using WMS.Entity.SysEntity; namespace WMS.IBLL.ISysServer @@ -15,7 +17,7 @@ /// <param name="model"></param> /// <param name="count"></param> /// <returns></returns> - List<InterfaceDto> GetInterfaceList(InterfaceVm model, out int count); + Task<SqlSugarPagedList> GetInterfaceList(InterfaceVm model); /// <summary> /// 鑾峰彇鎺ュ彛鏄庣粏鍒楄〃 @@ -23,34 +25,34 @@ /// <param name="model"></param> /// <param name="count"></param> /// <returns></returns> - List<InterfaceDetailDto> GetInterfaceDetailList(InterfaceDetailVm model, out int count); + Task<SqlSugarPagedList> GetInterfaceDetailList(InterfaceDetailVm model); /// <summary> /// 娣诲姞鎺ュ彛淇℃伅 /// </summary> /// <param name="model"></param> /// <returns></returns> - string AddInterface(InterfaceVm model); + Task AddInterface(InterfaceVm model); /// <summary> /// 缂栬緫鎺ュ彛淇℃伅 /// </summary> /// <param name="model"></param> /// <returns></returns> - string EditInterface(InterfaceVm model); + Task EditInterface(InterfaceVm model); /// <summary> /// 鍒犻櫎鎺ュ彛淇℃伅 /// </summary> /// <param name="model"></param> /// <returns></returns> - string DelInterface(InterfaceVm model); + Task DelInterface(InterfaceVm model); /// <summary> /// 鍒犻櫎鎺ュ彛鏄庣粏淇℃伅 /// </summary> /// <param name="model"></param> /// <returns></returns> - string DelInterfaceDetail(InterfaceDetailVm model); + Task DelInterfaceDetail(InterfaceDetailVm model); } } -- Gitblit v1.8.0