123456789101112131415161718192021 |
- using Hotline.Api.Filter;
- using Microsoft.AspNetCore.Mvc;
- using MiniExcelLibs;
- namespace Hotline.Api.Controllers;
- [ApiController]
- [Produces("application/json")]
- [Route("api/v1/[controller]")]
- [LogFilterAttribute]
- public class BaseController : ControllerBase
- {
-
- }
- [ApiController]
- [Route("api/v1/[controller]")]
- public class OriginController : ControllerBase
- {
-
- }
|