namespace Tiobon.Core.Api.Controllers;
///
/// 年度人力申请(Controller)
///
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghrh)]
public class Ghrh_YearHumanApplyOrderController : BaseController
{
public Ghrh_YearHumanApplyOrderController(IGhrh_YearHumanApplyOrderServices service) : base(service)
{
}
#region 根据审批单ID获取数据
///
///
///
///
///
[HttpPost("QueryByWorkId/{id}")]
public async Task> QueryByWorkId(int id)
{
return await _service.QueryByWorkId(id);
}
#endregion
}