using Model.ModelDto.SysDto; using Model.ModelVm.SysVm; using System; using System.Collections.Generic; using System.Text; using WMS.Entity.SysEntity; namespace WMS.IBLL.ISysServer { public interface IInterfaceServer { /// /// 获取接口列表 /// /// /// /// List GetInterfaceList(InterfaceVm model, out int count); /// /// 获取接口明细列表 /// /// /// /// List GetInterfaceDetailList(InterfaceDetailVm model, out int count); /// /// 添加接口信息 /// /// /// string AddInterface(InterfaceVm model); /// /// 编辑接口信息 /// /// /// string EditInterface(InterfaceVm model); /// /// 删除接口信息 /// /// /// string DelInterface(InterfaceVm model); /// /// 删除接口明细信息 /// /// /// string DelInterfaceDetail(InterfaceDetailVm model); } }