1234567891011121314151617181920212223242526272829303132 |
- using ERP.Core.Service;
- using ERP.Framework.WebApi;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.Extensions.Configuration;
- using Serilog;
- namespace ERP.Core.Controller
- {
- [Route("sys-user")]
- public class SysUserController : BaseController
- {
- private readonly IConfiguration _configuration;
- private readonly AuthService _authService;
- public SysUserController(IConfiguration configuration, AuthService authService)
- {
- _configuration = configuration;
- _authService = authService;
- }
- [HttpGet]
- public IActionResult Test()
- {
- Log.Debug("123");
- var m = GetType().Name;
- var c = "";
- return Success();
- }
- }
- }
|