namespace Tiobon.Core.Api.Controllers;
///
/// 招聘参数配置(Controller)
///
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghrh)]
public class Ghrh_ConfigController : BaseController
{
public Ghrh_ConfigController(IGhrh_ConfigServices service) : base(service)
{
}
///
/// 批量更新数据
///
///
[HttpPost, Route("BulkUpdateValue")]
public virtual async Task BulkUpdateValue([FromBody] List entitys)
{
return await _service.BulkUpdateValue(entitys);
}
}