Browse Source

Merge branch 'feature/snapshot' into dev

qinchaoyue 1 month ago
parent
commit
e48e4df12d
1 changed files with 1 additions and 16 deletions
  1. 1 16
      src/Hotline.Share/Dtos/Snapshot/StatisticsDto.cs

+ 1 - 16
src/Hotline.Share/Dtos/Snapshot/StatisticsDto.cs

@@ -2658,22 +2658,7 @@ public class CompliantStatisticsDetailsOutDto
     /// </summary>
     public string Title { get; set; }
 
-    /// <summary>
-    /// 办理时长(秒)
-    /// </summary>
-    public int? AllDuration { get; set; }
-
-    /// <summary>
-    /// 办理时长(分)
-    /// </summary>
-    public string TotalMinutes => AllDuration == null ? "0" : ((double)AllDuration / 60).ToString("f0");
-
-    /// <summary>
-    /// 办理时长(时)
-    /// </summary>
-    public string TotalHours => AllDuration == null ? "0" : ((double)AllDuration / 60 / 60).ToString("f2");
-
-    /// <summary>
+   /// <summary>
     /// 接办部门
     /// </summary>
     public string ActualHandleOrgName { get; set; }