IDeviceService.cs 915 B

123456789101112131415161718192021222324252627282930313233
  1. using Ant.Core.WebApi.Model;
  2. using Central.Control.WebApi.Models.Request;
  3. using Central.Control.WebApi.Models.Response;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Web;
  8. namespace Central.Control.WebApi.Service.Interface
  9. {
  10. /// <summary>
  11. ///
  12. /// </summary>
  13. public interface IDeviceService
  14. {
  15. /// <summary>
  16. /// 设备包装盒表
  17. /// </summary>
  18. /// <param name="kw"></param>
  19. /// <param name="skip"></param>
  20. /// <param name="limit"></param>
  21. /// <returns></returns>
  22. PagedApiResult<DevicePackingResponseDto> GetDevicePackings(string kw = "", int skip = 0, int limit = 1);
  23. /// <summary>
  24. /// 设备包装盒保存
  25. /// </summary>
  26. /// <param name="req"></param>
  27. /// <returns></returns>
  28. ApiResult SaveDevicePacking(DevicePackingRequestDto req);
  29. }
  30. }