| using Microsoft.AspNetCore.Authorization; | 
| using Microsoft.AspNetCore.Mvc; | 
| using System; | 
| using System.Collections.Generic; | 
| using System.Linq; | 
| using System.Threading.Tasks; | 
| using WIDESEA_Core.Controllers.Basic; | 
| using WIDESEA_Core.DBManager; | 
| using WIDESEA_Entity.DomainModels; | 
| using WIDESEA_System.IServices; | 
|   | 
| namespace WIDESEA_WebApi.Controllers.System | 
| { | 
|     [Route("api/Sys_Log")] | 
|     public partial class Sys_LogController : ApiBaseController<ISys_LogService> | 
|     { | 
|         public Sys_LogController(ISys_LogService service) | 
|         : base("System", "System", "Sys_Log", service) | 
|         { | 
|         } | 
|     } | 
| } |