25 lines
702 B
C#
25 lines
702 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<OdfPortsDto> ExportList(OdfPortsQueryDto parm);
|
|
PagedInfo<OdfPortsDto> ExportList(OdfPortsQuerysDto parm);
|
|
}
|
|
}
|