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