using iWare.Wms.Core;
|
using Microsoft.AspNetCore.Mvc;
|
using System.Collections.Generic;
|
using System.Threading.Tasks;
|
|
namespace iWare.Wms.Application
|
{
|
public interface IWmsPlaceService
|
{
|
Task Add(AddWmsPlaceInput input);
|
Task Delete(DeleteWmsPlaceInput input);
|
Task<WmsPlaceOutput> Get([FromQuery] QueryeWmsPlaceInput input);
|
Task<List<WmsPlaceOutput>> List([FromQuery] WmsPlaceInput input);
|
Task<PageResult<WmsPlaceOutput>> Page([FromQuery] WmsPlaceSearch input);
|
Task Update(UpdateWmsPlaceInput input);
|
Task<dynamic> FkWmsAreaList();
|
}
|
}
|