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.
BookingHeChuan/Myshipping.FlowCenter/Entity/FlcFlowInstanceOperationHis...

39 lines
1.3 KiB
C#

using SqlSugar;
using System;
namespace Myshipping.FlowCenter.Entity;
/// <summary>
/// 工作流实例操作记录
/// </summary>
[Tenant("1")]
[SugarTable("flc_flowinstanceinfo")]
public class FlcFlowInstanceOperationHistory : PrimaryKeyEntity
{
/// <summary>
/// 实例进程Id
/// </summary>
[SugarColumn(IsNullable = false, ColumnName = "InstanceId",ColumnDataType = "text", ColumnDescription = "实例进程Id")]
public long InstanceId { get; set; }
/// <summary>
/// 操作内容
/// </summary>
[SugarColumn(IsNullable = true, ColumnName = "Content", ColumnDataType = "text", ColumnDescription = "操作内容")]
public string Content { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(IsNullable = false,ColumnDescription = "类别名称")]
public DateTime? CreatedTime { get; set; }
/// <summary>
/// 创建用户主键
/// </summary>
[SugarColumn(IsNullable = true, ColumnName = "CreatedUserId", ColumnDescription = "创建用户主键")]
public long CreatedUserId { get; set; }
/// <summary>
/// 创建用户
/// </summary>
[SugarColumn(IsNullable = true, ColumnName = "CreatedUserName", ColumnDataType = "text", ColumnDescription = "创建用户")]
public string CreatedUserName { get; set; }
}