| 12345678910111213141516 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using System.Web.Mvc;
- using WeApp.BaseSystem.AuditLog.Dto;
- using IwbZero.AppServiceBase;
- namespace WeApp.BaseSystem.AuditLog
- {
- public interface IAuditLogsAppService : IIwbZeroAsyncCrudAppService<SysLogDto, long, IwbPagedRequestDto>
- {
- List<SelectListItem> GetLogServiceSelectLists();
- string GetLogServiceSelectListStrs();
- List<SelectListItem> GetLogMethodSelectLists(QueryMethodName input);
- string GetLogMethodSelectListStrs(QueryMethodName input);
- }
- }
|