using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; namespace Myshipping.Core.Service; public interface ISysVisLogService { Task ClearVisLog(); Task QueryVisLogPageList([FromQuery] VisLogInput input); }