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