123456789101112131415161718192021222324252627282930313233 |
- 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
- {
- /// <summary>
- ///
- /// </summary>
- public interface IDeviceService
- {
- /// <summary>
- /// 设备包装盒表
- /// </summary>
- /// <param name="kw"></param>
- /// <param name="skip"></param>
- /// <param name="limit"></param>
- /// <returns></returns>
- PagedApiResult<DevicePackingResponseDto> GetDevicePackings(string kw = "", int skip = 0, int limit = 1);
- /// <summary>
- /// 设备包装盒保存
- /// </summary>
- /// <param name="req"></param>
- /// <returns></returns>
- ApiResult SaveDevicePacking(DevicePackingRequestDto req);
- }
- }
|