using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; namespace Myshipping.Core.Service; public interface ISysOpLogService { Task ClearOpLog(); Task QueryOpLogPageList([FromQuery] OpLogInput input); }