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.
46 lines
868 B
46 lines
868 B
using cd.dapper.extension;
|
|
using System;
|
|
|
|
namespace learun.iapplication
|
|
{
|
|
/// <summary>
|
|
/// 版 本 EasyCode EC管理后台
|
|
/// Copyright (c) 2019-present EC管理有限公司
|
|
/// 创建人:tobin
|
|
/// 日 期:2019.11.01
|
|
/// 描 述:任务执行日志
|
|
/// </summary>
|
|
[Table("lr_ts_log")]
|
|
public class TSLogEntity
|
|
{
|
|
#region 实体成员
|
|
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Key]
|
|
public string F_Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务名称
|
|
/// </summary>
|
|
public string F_Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行结果 1 :成功 2: 异常
|
|
/// </summary>
|
|
public int? F_ExecuteResult { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime? F_CreateDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
public string F_Des { get; set; }
|
|
|
|
#endregion 实体成员
|
|
}
|
|
}
|