SysUserController.cs 680 B

1234567891011121314151617181920212223242526272829
  1. using ERP.Core.Service;
  2. using ERP.Framework.WebApi;
  3. using Microsoft.AspNetCore.Mvc;
  4. using Microsoft.Extensions.Configuration;
  5. namespace ERP.Core.Controller
  6. {
  7. [Route("/sys-user")]
  8. public class SysUserController : BaseController
  9. {
  10. private readonly IConfiguration _configuration;
  11. private readonly AuthService _authService;
  12. public SysUserController(IConfiguration configuration, AuthService authService)
  13. {
  14. _configuration = configuration;
  15. _authService = authService;
  16. }
  17. [HttpGet]
  18. public void Test()
  19. {
  20. var m = GetType().Name;
  21. var c = "";
  22. }
  23. }
  24. }