|
@@ -79,13 +79,13 @@ public class Workflow : CreationEntity
|
|
|
/// 办理人id
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDataType = "varchar(1000)", IsJson = true)]
|
|
|
- public List<string> HandlerUsers { get; set; }
|
|
|
+ public List<string> HandlerUsers { get; set; } = new();
|
|
|
|
|
|
/// <summary>
|
|
|
/// 办理部门code
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDataType = "varchar(1000)", IsJson = true)]
|
|
|
- public List<string> HandlerOrgs { get; set; }
|
|
|
+ public List<string> HandlerOrgs { get; set; } = new();
|
|
|
|
|
|
///// <summary>
|
|
|
///// 外部业务唯一标识
|