|
@@ -146,10 +146,10 @@ public abstract class WorkflowEntity : FullStateEntity, IWorkflow
|
|
[SugarColumn(IsNullable = true)]
|
|
[SugarColumn(IsNullable = true)]
|
|
public string? ExpiredTimeConfigId { get; set; }
|
|
public string? ExpiredTimeConfigId { get; set; }
|
|
|
|
|
|
- [SugarColumn(ColumnDataType = "varchar(1000)", IsJson = true)]
|
|
|
|
|
|
+ [SugarColumn(ColumnDataType = "json", IsJson = true)]
|
|
public List<string> AssignOrgCodes { get; set; } = new();
|
|
public List<string> AssignOrgCodes { get; set; } = new();
|
|
|
|
|
|
- [SugarColumn(ColumnDataType = "longtext", IsJson = true)]
|
|
|
|
|
|
+ [SugarColumn(ColumnDataType = "json", IsJson = true)]
|
|
public List<string> AssignUserIds { get; set; } = new();
|
|
public List<string> AssignUserIds { get; set; } = new();
|
|
|
|
|
|
//[SugarColumn(ColumnDataType = "varchar(600)", IsJson = true)]
|
|
//[SugarColumn(ColumnDataType = "varchar(600)", IsJson = true)]
|
|
@@ -241,10 +241,10 @@ public abstract class PositionWorkflowEntity : PositionEntity, IWorkflow
|
|
[SugarColumn(IsNullable = true)]
|
|
[SugarColumn(IsNullable = true)]
|
|
public string? ExpiredTimeConfigId { get; set; }
|
|
public string? ExpiredTimeConfigId { get; set; }
|
|
|
|
|
|
- [SugarColumn(ColumnDataType = "varchar(1000)", IsJson = true)]
|
|
|
|
|
|
+ [SugarColumn(ColumnDataType = "json", IsJson = true)]
|
|
public List<string> AssignOrgCodes { get; set; } = new();
|
|
public List<string> AssignOrgCodes { get; set; } = new();
|
|
|
|
|
|
- [SugarColumn(ColumnDataType = "longtext", IsJson = true)]
|
|
|
|
|
|
+ [SugarColumn(ColumnDataType = "json", IsJson = true)]
|
|
public List<string> AssignUserIds { get; set; } = new();
|
|
public List<string> AssignUserIds { get; set; } = new();
|
|
|
|
|
|
//[SugarColumn(ColumnDataType = "varchar(600)", IsJson = true)]
|
|
//[SugarColumn(ColumnDataType = "varchar(600)", IsJson = true)]
|