12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using Ant.Core.WebApi.Model;
- using Central.Control.WebApi.Models.Request;
- using Central.Control.WebApi.Models.Response;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace Central.Control.WebApi.Service.Interface
- {
-
-
-
- public interface IDeviceService
- {
-
-
-
-
- ApiResult<DeviceProductResponseDto> GetDeviceProduct();
-
-
-
-
-
- ApiResult SaveDeviceProduct(DeviceProductRequestDto req);
-
-
-
-
- ApiResult<DevicePackingResponseDto> GetDevicePacking();
-
-
-
-
-
-
-
- PagedApiResult<DeviceCanUsePackingResponseDto> GetDeviceCanUsePackings(string kw = "", int skip = 0, int limit = 1);
-
-
-
-
-
- ApiResult SaveDevicePacking(DevicePackingRequestDto req);
- }
- }
|