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

14 lines
568 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_InterviewRecordController : BaseController<IGhrh_InterviewRecordServices, Ghrh_InterviewRecord, Ghrh_InterviewRecordDto, InsertGhrh_InterviewRecordInput, EditGhrh_InterviewRecordInput>
{
public Ghrh_InterviewRecordController(IGhrh_InterviewRecordServices service) : base(service)
{
}
}