|
@@ -161,13 +161,10 @@ namespace Hotline.Orders
|
|
|
public DateTime? IncidentTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 重复工单
|
|
|
+ /// 重复工单Id
|
|
|
/// </summary>
|
|
|
- //todo 1vN
|
|
|
- [SugarColumn(ColumnDescription = "重复工单Id", IsNullable = true)]
|
|
|
- public string? DuplicateId { get; set; }
|
|
|
- [SugarColumn(ColumnDescription = "重复工单标题", IsNullable = true)]
|
|
|
- public string? DuplicateTitle { get; set; }
|
|
|
+ [SugarColumn(ColumnDescription = "重复工单Id", ColumnDataType = "array", IsNullable = true)]
|
|
|
+ public List<string>? DuplicateIds { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 推送分类
|
|
@@ -261,6 +258,7 @@ namespace Hotline.Orders
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
public string? No110 { get; set; }
|
|
|
|
|
|
+
|
|
|
#endregion
|
|
|
|
|
|
#region 流程信息
|