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.
26 lines
809 B
26 lines
809 B
using Tiobon.Core.Model.ViewModels.Extend;
|
|
|
|
namespace Tiobon.Core.Api.Controllers;
|
|
|
|
/// <summary>
|
|
/// 个人简历(Controller)
|
|
/// </summary>
|
|
[Route("api/[controller]")]
|
|
[ApiController, GlobalActionFilter]
|
|
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghrh)]
|
|
public class Ghrh_ResumeController : BaseController<IGhrh_ResumeServices, Ghrh_Resume, Ghrh_ResumeDto, InsertGhrh_ResumeInput, EditGhrh_ResumeInput>
|
|
{
|
|
public Ghrh_ResumeController(IGhrh_ResumeServices service) : base(service)
|
|
{
|
|
}
|
|
|
|
#region 获取简历Tabs接口
|
|
/// <summary>
|
|
/// 获取简历Tabs接口
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost("QueryViewTab")]
|
|
public ServiceResult<List<ResumeViewTab>> QueryViewTab() => _service.QueryViewTab();
|
|
|
|
#endregion
|
|
} |