using JNPF.DependencyInjection;
namespace JNPF.TaskScheduler.Entitys.Dto.TaskScheduler;
[SuppressSniffer]
public class TimeTaskCrInput
{
///
/// 任务名称.
///
public string fullName { get; set; }
///
/// 执行类型.
///
public string executeType { get; set; }
///
/// 备注.
///
public string description { get; set; }
///
/// 执行内容.
///
public string executeContent { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
///
/// 编码.
///
public string enCode { get; set; }
///
/// 启用标识.
///
public int? enabledMark { get; set; }
}