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)
{
}
///
/// 统计
///
///
///
[HttpPost("QueryStatistic/{id}")]
public async Task QueryStatistic(long id)
{
return await _service.QueryStatistic(id);
}
}