using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; namespace Myshipping.Core.Service; public interface ISysExLogService { Task ClearExLog(); Task QueryExLogPageList([FromQuery] ExLogInput input); }