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.
23 lines
526 B
C#
23 lines
526 B
C#
10 months ago
|
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; }
|
||
|
}
|