You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
647 B

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using VOL.Core.Controllers.Basic;
using VOL.Core.DBManager;
using VOL.Entity.DomainModels;
using VOL.System.IServices;
namespace VOL.System.Controllers
{
[Route("api/Sys_Log")]
public partial class Sys_LogController : ApiBaseController<ISys_LogService>
{
public Sys_LogController(ISys_LogService service)
: base("System", "System", "Sys_Log", service)
{
// 没有多个构造函数时,执行默认构造
}
}
}