using GDZZ.Core; using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; using GDZZ.Application.Entity; using System.Collections.Generic; namespace GDZZ.Application { public interface ITakingService { Task Page([FromQuery] TakingInput input); Task> List(); } }