using Newtonsoft.Json.Linq; using System.Runtime.InteropServices.JavaScript; namespace Tiobon.Core.Api.Controllers; /// /// 考核期间(Controller) /// [Route("api/[controller]")] [ApiController, GlobalActionFilter] [Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghrp)] public class Ghrp_PerformancePeriodController : BaseController { public Ghrp_PerformancePeriodController(IGhrp_PerformancePeriodServices service) : base(service) { } #region 批量展开 /// /// 批量展开 /// /// 阶段 /// [HttpPost, Route("BatchCreatePeriod")] public async Task BatchCreatePeriod([FromBody] JObject jsonParam) => await _service.BatchCreatePeriod(jsonParam); #endregion }