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