You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
C#
52 lines
1.5 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Entity
|
|
{
|
|
/// <summary>
|
|
/// 任务编排执行日志表
|
|
///</summary>
|
|
[SugarTable("task_flow_log_detail", "任务编排执行日志表")]
|
|
public class TaskFlowLogDetail : BaseModelV2<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 父主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "父主键", IsNullable = false)]
|
|
public long PId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行流程主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "执行流程主键")]
|
|
public long ConfigId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行模块主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "执行模块主键")]
|
|
public long ModuleId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行状态 1=正常结束 2=执行过程中发生异常
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "执行状态 1=正常结束 2=执行过程中发生异常", Length = 1)]
|
|
public int ExecuteStatus { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 异常内容
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "异常内容", IsNullable = true, Length = 4000)]
|
|
public string? ExceptionMessage { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 执行耗时
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "执行耗时")]
|
|
public long ElapsedMillisecond { get; set; }
|
|
}
|
|
} |