using YBEE.EQM.Core; namespace YBEE.EQM.Application { public interface ISysLogService { Task ClearLogVis(); Task> QueryLogVisPageList(SysLogVisPageInput input); Task ClearLogEx(); Task> QueryLogExPageList(SysLogExPageInput input); Task ClearLogOp(); Task> QueryLogOpPageList(SysLogOpPageInput input); } }