WebController.cs 237 B

123456789101112
  1. using Microsoft.AspNetCore.Mvc;
  2. namespace SM.Web
  3. {
  4. /// <summary>基础控制器</summary>
  5. [Route("api/[controller]/[action]")]
  6. [ApiController]
  7. [Permission]
  8. public class WebController : ControllerBase
  9. {
  10. }
  11. }