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.
35 lines
785 B
C#
35 lines
785 B
C#
using System.ComponentModel;
|
|
using DS.Module.Core.Data;
|
|
|
|
namespace DS.WMS.Core.Flow.Entity;
|
|
|
|
/// <summary>
|
|
/// 工作流实例操作历史
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("sys_flow_instance_history")]
|
|
public class FlowInstanceHistory: BaseTenantModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 实例Id
|
|
/// </summary>
|
|
[Description("实例Id")]
|
|
public long InstanceId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作内容
|
|
/// </summary>
|
|
[Description("操作内容")]
|
|
public string Content { get; set; }
|
|
|
|
/// <summary>
|
|
/// 审批结果
|
|
/// </summary>
|
|
[Description("审批结果")]
|
|
public int? Result { get; set; }
|
|
|
|
/// <summary>
|
|
/// 审批人
|
|
/// </summary>
|
|
[Description("审批人")]
|
|
public string? UserName { get; set; }
|
|
} |