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.
40 lines
1.0 KiB
40 lines
1.0 KiB
using SqlSugar;
|
|
|
|
namespace Wood.Entity.SystemManage;
|
|
|
|
/// <summary>
|
|
/// 系统作业信息表
|
|
/// </summary>
|
|
[SugarTable("SysJobDetail", "系统作业信息表")]
|
|
public class JobDetailEntity : EntityBaseExtra
|
|
{
|
|
/// <summary>
|
|
/// 作业Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "作业Id", Length = 64)]
|
|
public virtual string JobId { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 组名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "组名称", Length = 128)]
|
|
public string GroupName { get; set; } = "default";
|
|
|
|
/// <summary>
|
|
/// 作业类型FullName
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "作业类型", Length = 128,IsNullable =true)]
|
|
public string? JobType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 程序集Name
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "程序集", Length = 128, IsNullable = true)]
|
|
public string? AssemblyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述信息
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "描述信息", Length = 128, IsNullable = true)]
|
|
public string? Description { get; set; }
|
|
}
|