Sign in

MES / IOT · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • IOT
  • sys
  • sys_JOB
  • Quartz.Job
  • Jobs
  • AgvJob.cs
  • 1、调整定时器 ...
    c3df0a80
    2、恢复合并冲突代码
    唐召明 authored
    2024-06-03 11:06:14 +0800  
    Browse Code »
AgvJob.cs 233 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12
using System;

namespace Quartz.Job.Jobs
{
    public class AgvJob : JobBase
    {
        public override void ExecuteJob(IJobExecutionContext context)
        {
            throw new NotImplementedException();
        }
    }
}