namespace Admin.NET.Core; /// /// 系统作业集群表 /// [SugarTable("sys_job_cluster", "系统作业集群表")] public class SysJobCluster : BaseId { /// /// 作业集群Id /// [SugarColumn(ColumnDescription = "作业集群Id", Length = 64)] [MaxLength(64)] public virtual string ClusterId { get; set; } /// /// 描述信息 /// [SugarColumn(ColumnDescription = "描述信息", Length = 128)] [MaxLength(128)] public string Description { get; set; } /// /// 状态 /// [SugarColumn(ColumnDescription = "状态")] public ClusterStatus Status { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnDescription = "更新时间")] public DateTime? UpdatedTime { get; set; } }