|
@@ -1,4 +1,5 @@
|
|
|
-using SqlSugar;
|
|
|
+using System;
|
|
|
+using SqlSugar;
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
namespace WCS.Entity.Protocol.HUB
|
|
@@ -32,18 +33,18 @@ namespace WCS.Entity.Protocol.HUB
|
|
|
/// 开始时间
|
|
|
/// </summary>
|
|
|
|
|
|
- public string StartTime { get; set; }
|
|
|
+ public DateTime StartTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 结束时间
|
|
|
/// </summary>
|
|
|
|
|
|
- public string EndTime { get; set; }
|
|
|
+ public DateTime EndTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 总时长
|
|
|
/// </summary>
|
|
|
|
|
|
- public string Duration { get; set; }
|
|
|
+ public ulong Duration { get; set; }
|
|
|
}
|
|
|
}
|