namespace Tiobon.Core.Api.Controllers;
///
/// 年度人力配置(Controller)
///
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghrh)]
public class Ghrh_YearHumanSettingsController : BaseController
{
public Ghrh_YearHumanSettingsController(IGhrh_YearHumanSettingsServices service) : base(service)
{
}
#region 根据年份查询审批Column
///
///
///
///
///
///
[HttpPost("QueryApplyColumn/{curentYear}/{langId}")]
public async Task>> QueryApplyColumn(int curentYear, int langId) => await _service.QueryApplyColumn(curentYear, langId);
#endregion
}