namespace Tiobon.Core.Api.Controllers; /// /// 课程场景(Controller) /// [Route("api/[controller]")] [ApiController, GlobalActionFilter] [Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghre)] public class Ghre_CourseSceneController : BaseController { public Ghre_CourseSceneController(IGhre_CourseSceneServices service) : base(service) { } /// /// 统计 /// /// /// [HttpGet("QueryStatistic/{id}")] public async Task QueryStatistic(long id) { return await _service.QueryStatistic(id); } }