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.
21 lines
797 B
21 lines
797 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_StaffGroupController : BaseController<IGhra_StaffGroupServices, Ghra_StaffGroup, Ghra_StaffGroupDto, InsertGhra_StaffGroupInput, EditGhra_StaffGroupInput>
|
|
{
|
|
public Ghra_StaffGroupController(IGhra_StaffGroupServices service) : base(service)
|
|
{
|
|
|
|
}
|
|
/// <summary>
|
|
/// 获取配置
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost, Route("GetStaffInfoColumnData")]
|
|
public async Task<ServiceResult<object>> GetStaffInfoColumnData(string Stage) => await _service.GetStaffInfoColumnData();
|
|
} |