using System.ComponentModel;
using DS.Module.Core.Data;
namespace DS.WMS.Core.Flow.Entity;
///
/// 工作流实例操作历史
///
[SqlSugar.SugarTable("sys_flow_instance_history")]
public class FlowInstanceHistory: BaseTenantModel
{
///
/// 实例Id
///
[Description("实例Id")]
public long InstanceId { get; set; }
///
/// 操作内容
///
[Description("操作内容")]
public string Content { get; set; }
///
/// 审批结果
///
[Description("审批结果")]
public int? Result { get; set; }
///
/// 审批人
///
[Description("审批人")]
public string? UserName { get; set; }
}