Blame view

netcore/src/Modularity/TaskSchedule/NCC.TaskScheduler.Entitys/Entity/TimeTaskLogEntity.cs 1.25 KB
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  using NCC.Common.Const;
  using NCC.Common.Entity;
  using SqlSugar;
  using System;
  using System.Collections.Generic;
  using System.Linq;
  using System.Text;
  using System.Threading.Tasks;
  
  namespace NCC.TaskScheduler.Entitys.Entity
  {
      /// <summary>
      /// 定时任务日志
      ///  本:V1.20.15
      ///  权:Wesleyhttps://www.NCCsoft.com
      ///  者:NCC开发平台组
      ///  期:2022-03-16 
      /// </summary>
      [SugarTable("BASE_TIMETASKLOG")]
      [Tenant(ClaimConst.TENANT_ID)]
      public class TimeTaskLogEntity: EntityBase<string>
      {
          /// <summary>
          /// 定时任务主键
          /// </summary>
          [SugarColumn(ColumnName = "F_TASKID")]
          public string TaskId { get; set; }
          /// <summary>
          /// 执行时间
          /// </summary>
          [SugarColumn(ColumnName = "F_RUNTIME")]
          public DateTime? RunTime { get; set; }
          /// <summary>
          /// 执行结果
          /// </summary>
          [SugarColumn(ColumnName = "F_RUNRESULT")]
          public int? RunResult { get; set; }
          /// <summary>
          /// 执行说明
          /// </summary>
          [SugarColumn(ColumnName = "F_DESCRIPTION")]
          public string Description { get; set; }
      }
  }