//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using SqlSugar; using System.ComponentModel; namespace HT.Cloud.Domain.SystemSecurity { /// /// 定时任务 /// [SugarTable("sys_openjoblog")] [Tenant("0")] //[TenantAttribute("0")] public partial class OpenJobLogEntity : IEntity { [SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true, ColumnDescription = "主键Id")] public string F_Id { get; set; } /// /// 任务名称 /// [Description("任务名称")] [SugarColumn(IsNullable = false, ColumnName = "F_JobName", ColumnDataType = "nvarchar(50)", ColumnDescription = "任务名称")] public string F_JobName { get; set; } /// /// 任务Id /// [Description("任务Id")] [SugarColumn(IsNullable = true, ColumnName = "F_JobId", ColumnDataType = "nvarchar(50)", ColumnDescription = "任务Id")] public string F_JobId { get; set; } /// /// 文件名称 /// [Description("任务信息")] [SugarColumn(IsNullable = true, ColumnName = "F_Description", ColumnDataType = "longtext", ColumnDescription = "任务信息")] public string F_Description { get; set; } /// /// 开始时间 /// [Description("执行时间")] [SugarColumn(IsNullable = true, ColumnDescription = "执行时间")] public System.DateTime? F_CreatorTime { get; set; } /// /// 结束时间 /// [Description("执行状态")] [SugarColumn(IsNullable = true, ColumnDescription = "执行状态")] public bool? F_EnabledMark { get; set; } } }