浏览代码

Merge branch 'feature/snapshot' into dev

qinchaoyue 2 月之前
父节点
当前提交
e48e4df12d
共有 1 个文件被更改,包括 1 次插入16 次删除
  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; }