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; }
|
}
|
}
|