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_ResumeStatementControl...

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_ResumeStatementController : BaseController<IGhrh_ResumeStatementServices, Ghrh_ResumeStatement, Ghrh_ResumeStatementDto, InsertGhrh_ResumeStatementInput, EditGhrh_ResumeStatementInput>
{
public Ghrh_ResumeStatementController(IGhrh_ResumeStatementServices service) : base(service)
{
}
}