namespace Tiobon.Core.Api.Controllers; /// /// 人员群组(Controller) /// [Route("api/[controller]")] [ApiController, GlobalActionFilter] [Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghra)] public class Ghra_StaffGroupController : BaseController { public Ghra_StaffGroupController(IGhra_StaffGroupServices service) : base(service) { } /// /// 获取配置 /// /// [HttpPost, Route("GetStaffInfoColumnData")] public async Task> GetStaffInfoColumnData(string Stage) => await _service.GetStaffInfoColumnData(); }