namespace Tiobon.Core.Api.Controllers;
///
/// 必选修规则(Controller)
///
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghre)]
public class Ghre_StudyRuleController : BaseController
{
public Ghre_StudyRuleController(IGhre_StudyRuleServices service) : base(service)
{
}
#region 记录
///
/// 记录
///
///
///
[HttpPost("StaffIn")]
public async Task StaffIn(long id) => await _service.StaffIn();
#endregion
}