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.
31 lines
615 B
31 lines
615 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Wood.Entity.SystemManage;
|
|
|
|
namespace Wood.AutoJob
|
|
{
|
|
/// <summary>
|
|
/// Job明细
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class JobDetailAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// 作业Id
|
|
/// </summary>
|
|
public string? JobId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 组名称
|
|
/// </summary>
|
|
public string? GroupName { get; set; } = "default";
|
|
|
|
/// <summary>
|
|
/// 描述信息
|
|
/// </summary>
|
|
public string? Description { get; set; }
|
|
}
|
|
}
|
|
|