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/Ghra/Ghra_StaffGroupDetailContro...

14 lines
582 B

namespace Tiobon.Core.Api.Controllers;
/// <summary>
/// 人员群组明细(Controller)
/// </summary>
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghra)]
public class Ghra_StaffGroupDetailController : BaseController<IGhra_StaffGroupDetailServices, Ghra_StaffGroupDetail, Ghra_StaffGroupDetailDto, InsertGhra_StaffGroupDetailInput, EditGhra_StaffGroupDetailInput>
{
public Ghra_StaffGroupDetailController(IGhra_StaffGroupDetailServices service) : base(service)
{
}
}