|
@@ -5,19 +5,34 @@ namespace Sharing.Orders;
|
|
|
/// <summary>
|
|
|
/// 工单数据
|
|
|
/// </summary>
|
|
|
-public class DataOrder : FullStateEntity
|
|
|
+public class DataOrder : CreationModificationEntity
|
|
|
{
|
|
|
/*
|
|
|
工单id 工单编号 上传省工单编号 省编号 受理时间 第一次工单同步省平台时间 工单上传间隔(s) 工单是否及时上传 同步诉求渠道 最新应办结时间 最新工单同步省平台时间 第一次结果同步时间
|
|
|
最新同步答复时间 最新结果同步时间 第一次评价同步时间 最新同步评价时间 最新评价同步时间 第一次工单满意度 最新满意度 同步诉求类型 办理时长 是否为省工单
|
|
|
*/
|
|
|
+ /// <summary>
|
|
|
+ /// 工单id
|
|
|
+ /// </summary>
|
|
|
public string OrderId { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 工单编号
|
|
|
+ /// </summary>
|
|
|
public string OrderNo { get; set; }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 上传省工单编号
|
|
|
+ /// </summary>
|
|
|
+ public string ProvinceNo { get; set; }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 受理时间
|
|
|
+ /// </summary>
|
|
|
+ public DateTime? CaseDate { get; set; }
|
|
|
}
|
|
|
|
|
|
-public class DataOrderPush : FullStateEntity
|
|
|
+public class DataOrderPush : CreationModificationEntity
|
|
|
{
|
|
|
|
|
|
}
|