|
@@ -56,7 +56,7 @@ public class OrderSnapshot : CreationSoftDeleteEntity
|
|
|
/// <summary>
|
|
|
/// 作业类型
|
|
|
/// </summary>
|
|
|
- [SugarColumn(ColumnDescription ="作业类型")]
|
|
|
+ [SugarColumn(ColumnDescription = "作业类型")]
|
|
|
public string? JobTypeName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
@@ -344,7 +344,7 @@ public class OrderSnapshot : CreationSoftDeleteEntity
|
|
|
/// <summary>
|
|
|
/// 办理状态 1,7:流转 2:办结 3:退回 4:网格员签收 5:消息推送 6: 超时自动退单
|
|
|
/// </summary>
|
|
|
- [SugarColumn(ColumnDescription ="网格员办理状态")]
|
|
|
+ [SugarColumn(ColumnDescription = "网格员办理状态")]
|
|
|
public EGuiderSystemReplyType? ReplyResultType { get; set; }
|
|
|
|
|
|
#endregion
|
|
@@ -394,4 +394,10 @@ public class OrderSnapshot : CreationSoftDeleteEntity
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "12345不使用的扩展字段,第三方系统使用")]
|
|
|
public string? Attach { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 老系统Id
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnDescription = "老系统Id", IsNullable = true)]
|
|
|
+ public string? OldId { get; set; }
|
|
|
}
|