You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

39 lines
922 B

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Wood.Entity.SystemManage;
using Wood.Util;
namespace Wood.Service.SystemManage.Dto
{
public class AutoJobDto:JobTriggerEntity
{
/// <summary>
/// 组名称
/// </summary>
public string GroupName { get; set; } = "default";
/// <summary>
/// 作业类型FullName
/// </summary>
public string? JobType { get; set; }
/// <summary>
/// 程序集Name
/// </summary>
public string? AssemblyName { get; set; }
/// <summary>
/// 描述信息
/// </summary>
public string? JobDescription { get; set; }
/// <summary>
/// 状态文本
/// </summary>
public string? StatusText { get => Status.GetDescription(); }
}
}