using ZR.Model.Business.Dto; using ZR.Model.Business; namespace ZR.Service.Business.IBusinessService { /// /// 端口service接口 /// public interface IOdfPortsService : IBaseService { PagedInfo GetList(OdfPortsQueryDto parm); PagedInfo GetList(OdfPortsQuerysDto parm); OdfPorts GetInfo(int Id); OdfPorts AddOdfPorts(OdfPorts parm); int UpdateOdfPorts(OdfPorts parm); (string, object, object) ImportOdfPorts(List list); PagedInfo ExportList(OdfPortsQueryDto parm); PagedInfo ExportList(OdfPortsQuerysDto parm); /// /// 导出端口(与导入模板格式一致) /// PagedInfo ExportListForImport(OdfPortsQueryDto parm); } }