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