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/Ghre/Ghre_StudyRecordDetailContr...

14 lines
590 B

namespace Tiobon.Core.Api.Controllers;
/// <summary>
/// 培训记录明细(Controller)
/// </summary>
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghre)]
public class Ghre_StudyRecordDetailController : BaseController<IGhre_StudyRecordDetailServices, Ghre_StudyRecordDetail, Ghre_StudyRecordDetailDto, InsertGhre_StudyRecordDetailInput, EditGhre_StudyRecordDetailInput>
{
public Ghre_StudyRecordDetailController(IGhre_StudyRecordDetailServices service) : base(service)
{
}
}