namespace MiaoYu.Core.Quartz.Services;
///
/// Quartz 启动配置
///
public static class QuartzStartupConfig
{
///
/// 作业任务 Key 名称
///
public static readonly string JobTaskKey = nameof(IQuartzJobInfoEntity);
///
/// 任务信息 key 名称
///
public static readonly string JobTaskInfoKey = nameof(IQuartzJobInfoEntity);
///
/// 任务信息回调 key 名称
///
public static readonly string JobTaskInfoCallKey = nameof(IQuartzJobInfoEntity) + "Call";
}