|
@@ -157,13 +157,13 @@ public abstract class WorkflowEntity : FullStateEntity, IWorkflow
|
|
|
/// 办理人id
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDataType = "json", IsJson = true)]
|
|
|
- public List<HandlerGroupItem> HandlerUsers { get; set; } = new();
|
|
|
+ public List<HandlerGroupItem>? HandlerUsers { get; set; } = new();
|
|
|
|
|
|
/// <summary>
|
|
|
/// 办理部门id
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDataType = "json", IsJson = true)]
|
|
|
- public List<HandlerGroupItem> HandlerOrgs { get; set; } = new();
|
|
|
+ public List<HandlerGroupItem>? HandlerOrgs { get; set; } = new();
|
|
|
|
|
|
#endregion
|
|
|
|
|
@@ -333,13 +333,13 @@ public abstract class PositionWorkflowEntity : PositionEntity, IWorkflow
|
|
|
/// 办理人id
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDataType = "json", IsJson = true)]
|
|
|
- public List<HandlerGroupItem> HandlerUsers { get; set; } = new();
|
|
|
+ public List<HandlerGroupItem>? HandlerUsers { get; set; } = new();
|
|
|
|
|
|
/// <summary>
|
|
|
/// 办理部门id
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDataType = "json", IsJson = true)]
|
|
|
- public List<HandlerGroupItem> HandlerOrgs { get; set; } = new();
|
|
|
+ public List<HandlerGroupItem>? HandlerOrgs { get; set; } = new();
|
|
|
|
|
|
#endregion
|
|
|
|