You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
699 B
22 lines
699 B
namespace Tiobon.Core.Api.Controllers;
|
|
|
|
/// <summary>
|
|
/// 岗位(Controller)
|
|
/// </summary>
|
|
[Route("api/[controller]")]
|
|
[ApiController, GlobalActionFilter]
|
|
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghra)]
|
|
public class Ghra_TitleController : BaseController<IGhra_TitleServices, Ghra_Title, Ghra_TitleDto, InsertGhra_TitleInput, EditGhra_TitleInput>
|
|
{
|
|
public Ghra_TitleController(IGhra_TitleServices service) : base(service)
|
|
{
|
|
}
|
|
|
|
#region 新增
|
|
[HttpPost("QuerySkillMatrix")]
|
|
public async Task<dynamic> QuerySkillMatrix([FromBody] QueryBody filter)
|
|
{
|
|
return await _service.QuerySkillMatrix(filter);
|
|
}
|
|
#endregion
|
|
} |