wankeda
2025-06-24 1caea0fdc7ed1788d854a2aba8853984b4494e01
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using Magicodes.ExporterAndImporter.Core;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Core.QuartzJob
{
    public class DispatchInfoDTO
    {
        /// <summary>
        /// 主键
        /// </summary>
        public int Id { get; set; }
 
        /// <summary>
        /// 任务名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 任务分组
        /// </summary>
        public string JobGroup { get; set; }
 
        /// <summary>
        /// 任务所在DLL对应的程序集名称
        /// </summary>
        public string AssemblyName { get; set; }
 
        /// <summary>
        /// 任务所在类
        /// </summary>
        public string ClassName { get; set; }
 
        /// <summary>
        /// 执行间隔时间, 秒为单位
        /// </summary>
        public int IntervalSecond { get; set; }
    }
}