服务端的TigerApi 框架,基于.NET6 2024 版本
YangYuGang
3 天以前 8ca0a4e167bcfe8ea99efe615c1c0f1bc62255a5
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tiger.Model;
 
namespace Tiger.Model
{
    public class TskParameter
    {
        public string JobName { get; set; }
        public string JobType { get; set; }
        public string AssemblyName { get; set; }
        public string Remark { get; set; }
        public string NonReentrant { get; set; }
        public DateTime ToRunOnceAtDt { get; set; }
        public DateTime LastRunTime { get; set; }
        public TrigArgs.RunType runType { get; set; }
        public TrigArgs.EveryType type { get; set; }
        public int NowAddMinutes { get; set; } //上面时间加多少分钟,表示延迟多少分钟运行
        public int ToRunEvery { get; set; } //每隔多少运行一回
        public int ToRunOnceIn { get; set; } //在多少后运行一次
        public int Minutes { get; set; }
        public int Hours { get; set; }
        public int Days { get; set; }
        public double Interval { get; set; }
        public string ByInterval { get; set; }
    }
 
    public class TskJobInput
    {
        public bool result { get; set; }
        public U9C_Base_Input input { get; set; }
    }
}