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/Ghrp/Ghrp_PerformanceItemControl...

14 lines
568 B

namespace Tiobon.Core.Api.Controllers;
/// <summary>
/// 考核指标(Controller)
/// </summary>
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghrp)]
public class Ghrp_PerformanceItemController : BaseController<IGhrp_PerformanceItemServices, Ghrp_PerformanceItem, Ghrp_PerformanceItemDto, InsertGhrp_PerformanceItemInput, EditGhrp_PerformanceItemInput>
{
public Ghrp_PerformanceItemController(IGhrp_PerformanceItemServices service) : base(service)
{
}
}