Blame view

sys/sys_JOB/Quartz.Job/Jobs/AgvJob.cs 291 Bytes
唐召明 authored
1
2
3
4
using System;

namespace Quartz.Job.Jobs
{
5
6
7
    /// <summary>
    /// agv定时器
    /// </summary>
唐召明 authored
8
9
10
11
12
13
14
15
    public class AgvJob : JobBase
    {
        public override void ExecuteJob(IJobExecutionContext context)
        {
            throw new NotImplementedException();
        }
    }
}