using iWare.Wms.Core;
|
using Microsoft.AspNetCore.Mvc;
|
using System.Collections.Generic;
|
using System.Threading.Tasks;
|
|
namespace iWare.Wms.Application
|
{
|
public interface IShiftInfoService
|
{
|
Task Add(AddShiftInfoInput input);
|
Task Delete(DeleteShiftInfoInput input);
|
Task<ShiftInfoOutput> Get([FromQuery] QueryeShiftInfoInput input);
|
Task<List<ShiftInfoOutput>> List([FromQuery] ShiftInfoInput input);
|
Task<PageResult<ShiftInfoOutput>> Page([FromQuery] ShiftInfoSearch input);
|
Task Update(UpdateShiftInfoInput input);
|
}
|
}
|