24 lines
616 B
C#
24 lines
616 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using LM.Core.Controllers.Basic;
|
|
using LM.Core.DBManager;
|
|
using LM.Entity.DomainModels;
|
|
using LM.Sys.IServices;
|
|
|
|
namespace LM.Sys.Controllers
|
|
{
|
|
[ApiExplorerSettings(GroupName = "v1")]
|
|
[Route("api/Sys_Log")]
|
|
public partial class Sys_LogController : ApiBaseController<ISys_LogService>
|
|
{
|
|
public Sys_LogController(ISys_LogService service)
|
|
: base("System", "System", "Sys_Log", service)
|
|
{
|
|
}
|
|
}
|
|
}
|