|
@@ -1,4 +1,5 @@
|
|
|
-using SqlSugar;
|
|
|
+using Hotline.Users;
|
|
|
+using SqlSugar;
|
|
|
using XF.Domain.Repository;
|
|
|
|
|
|
namespace Hotline.FlowEngine.Workflows;
|
|
@@ -21,4 +22,7 @@ public class WorkflowSupplement : CreationEntity
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDataType = "varchar(2000)", IsJson = true)]
|
|
|
public List<string> Additions { get; set; } = new();
|
|
|
+
|
|
|
+ [Navigate(NavigateType.OneToOne, nameof(CreatorId))]
|
|
|
+ public User Creator { get; set; }
|
|
|
}
|