using iWare.Wms.Core; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using System.Threading.Tasks; namespace iWare.Wms.Application { public interface IProductionPlanInfoService { Task Add(AddProductionPlanInfoInput input); Task Delete(DeleteProductionPlanInfoInput input); Task Get([FromQuery] QueryeProductionPlanInfoInput input); Task> List([FromQuery] ProductionPlanInfoInput input); Task> Page([FromQuery] ProductionPlanInfoSearch input); Task Update(UpdateProductionPlanInfoInput input); } }