コード例 #1
0
        public async Task <Result> GetJobLog([FromBody] JobKey job)
        {
            var result = await _schedulerCenter.GetJobLogAsync(job.Group, job.Name);

            return(new Result()
            {
                Code = 1, Success = true, Data = result
            });
        }