using Tiobon.Core.Model.ViewModels.Extend; namespace Tiobon.Core.Api.Controllers; /// /// 岗位技能_宝连通(Controller) /// [Route("api/[controller]")] [ApiController, GlobalActionFilter] [Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghre)] public class Ghre_TitleSkill_BoltoneController : BaseController { public Ghre_TitleSkill_BoltoneController(IGhre_TitleSkill_BoltoneServices service) : base(service) { } #region 状态修改 [HttpPost("QueryMatrix")] public async Task QueryMatrix(string status, [FromBody] QueryBody filter) { return await _service.QueryMatrix(filter); } #endregion }