using iWare.Wms.Core; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWare.Wms.Application { /// /// 外部访问接口日志 /// public interface IAccessInterfaceLogService { Task> Page([FromQuery] AccessInterfaceLogInputSearch input); /// /// 添加日志 /// /// /// Task AddInterfaceLogAsync(AddAccessInterfaceLogInput input); } }