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.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Api/Controllers/Ghrh/Ghrh_ResumeTrainingControll...

14 lines
566 B

namespace Tiobon.Core.Api.Controllers;
/// <summary>
/// 简历培训记录(Controller)
/// </summary>
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghrh)]
public class Ghrh_ResumeTrainingController : BaseController<IGhrh_ResumeTrainingServices, Ghrh_ResumeTraining, Ghrh_ResumeTrainingDto, InsertGhrh_ResumeTrainingInput, EditGhrh_ResumeTrainingInput>
{
public Ghrh_ResumeTrainingController(IGhrh_ResumeTrainingServices service) : base(service)
{
}
}