namespace Tiobon.Core.Api.Controllers;
///
/// 员工群组(Controller)
///
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghre)]
public class Ghre_StaffGroupController : BaseController
{
public Ghre_StaffGroupController(IGhre_StaffGroupServices service) : base(service)
{
}
[HttpPost, Route("QueryStaff/{id}")]
public async Task> QueryStaff([FromBody] QueryBody body, long id) => await _service.QueryStaff(id, body, null);
}