소스 검색

Change big decimal

wfansh 5 달 전
부모
커밋
e76d0e7fcf

+ 8 - 15
src/main/java/com/wechi/adweb/bridge/google/analytics/dto/report/data/DateViewData.java

@@ -4,12 +4,10 @@ import static com.wechi.adweb.bridge.google.analytics.dto.report.ReportConstant.
 
 import com.google.analytics.data.v1beta.Row;
 import com.wechi.adweb.bridge.util.DateUtils;
-import com.wechi.adweb.bridge.util.NumberUtils;
 
 import lombok.Builder;
 import lombok.Data;
 
-import java.math.BigDecimal;
 import java.time.format.DateTimeFormatter;
 import java.util.List;
 
@@ -32,9 +30,9 @@ public class DateViewData implements GAReportDataDTO {
 
     private int pageViews;
 
-    private BigDecimal bounceRate;
+    private double bounceRate;
 
-    private BigDecimal avgSessionDuration;
+    private double avgSessionDuration;
 
     public static List<DateViewData> toReport(
             List<Row> reportRows, List<String> metrics, List<String> dimensions) {
@@ -68,18 +66,13 @@ public class DateViewData implements GAReportDataDTO {
                                                         row.getMetricValues(indexPageViews)
                                                                 .getValue()))
                                         .bounceRate(
-                                                NumberUtils.formatDecimal(
-                                                        Double.parseDouble(
-                                                                row.getMetricValues(indexBounceRate)
-                                                                        .getValue()),
-                                                        4))
+                                                Double.parseDouble(
+                                                        row.getMetricValues(indexBounceRate)
+                                                                .getValue()))
                                         .avgSessionDuration(
-                                                NumberUtils.formatDecimal(
-                                                        Double.parseDouble(
-                                                                row.getMetricValues(
-                                                                                indexAvgSessionDuration)
-                                                                        .getValue()),
-                                                        2))
+                                                Double.parseDouble(
+                                                        row.getMetricValues(indexAvgSessionDuration)
+                                                                .getValue()))
                                         .build())
                 .toList();
     }

+ 9 - 16
src/main/java/com/wechi/adweb/bridge/google/analytics/dto/report/data/PagePathViewData.java

@@ -3,12 +3,10 @@ package com.wechi.adweb.bridge.google.analytics.dto.report.data;
 import static com.wechi.adweb.bridge.google.analytics.dto.report.ReportConstant.*;
 
 import com.google.analytics.data.v1beta.Row;
-import com.wechi.adweb.bridge.util.NumberUtils;
 
 import lombok.Builder;
 import lombok.Data;
 
-import java.math.BigDecimal;
 import java.util.List;
 
 /**
@@ -20,11 +18,11 @@ public class PagePathViewData implements GAReportDataDTO {
 
     private String pagePath;
 
-    private BigDecimal engagementRate;
+    private double engagementRate;
 
     private int pageViews;
 
-    private BigDecimal avgTimeOnPage;
+    private double avgTimeOnPage;
 
     public static List<PagePathViewData> toReport(
             List<Row> reportRows, List<String> metrics, List<String> dimensions) {
@@ -39,23 +37,18 @@ public class PagePathViewData implements GAReportDataDTO {
                                 PagePathViewData.builder()
                                         .pagePath(row.getDimensionValues(indexPagePath).getValue())
                                         .engagementRate(
-                                                NumberUtils.formatDecimal(
-                                                        Double.parseDouble(
-                                                                row.getMetricValues(
-                                                                                indexEngagementRate)
-                                                                        .getValue()),
-                                                        4))
+                                                Double.parseDouble(
+                                                        row.getMetricValues(indexEngagementRate)
+                                                                .getValue()))
                                         .pageViews(
                                                 Integer.parseInt(
                                                         row.getMetricValues(indexPageViews)
                                                                 .getValue()))
                                         .avgTimeOnPage(
-                                                NumberUtils.formatDecimal(
-                                                        Double.parseDouble(
-                                                                row.getMetricValues(
-                                                                                indexUserEngagementDuration)
-                                                                        .getValue()),
-                                                        2))
+                                                Double.parseDouble(
+                                                        row.getMetricValues(
+                                                                        indexUserEngagementDuration)
+                                                                .getValue()))
                                         .build())
                 .toList();
     }

+ 13 - 22
src/main/java/com/wechi/adweb/bridge/google/analytics/dto/report/data/SourceMediaViewData.java

@@ -3,12 +3,10 @@ package com.wechi.adweb.bridge.google.analytics.dto.report.data;
 import static com.wechi.adweb.bridge.google.analytics.dto.report.ReportConstant.*;
 
 import com.google.analytics.data.v1beta.Row;
-import com.wechi.adweb.bridge.util.NumberUtils;
 
 import lombok.Builder;
 import lombok.Data;
 
-import java.math.BigDecimal;
 import java.util.List;
 
 /**
@@ -26,11 +24,11 @@ public class SourceMediaViewData implements GAReportDataDTO {
 
     private int sessions;
 
-    private BigDecimal bounceRate;
+    private double bounceRate;
 
-    private BigDecimal avgSessionDuration;
+    private double avgSessionDuration;
 
-    private BigDecimal pageViewsPerSession;
+    private double pageViewsPerSession;
 
     public static List<SourceMediaViewData> toReport(
             List<Row> reportRows, List<String> metrics, List<String> dimensions) {
@@ -60,25 +58,18 @@ public class SourceMediaViewData implements GAReportDataDTO {
                                                         row.getMetricValues(indexSessions)
                                                                 .getValue()))
                                         .bounceRate(
-                                                NumberUtils.formatDecimal(
-                                                        Double.parseDouble(
-                                                                row.getMetricValues(indexBounceRate)
-                                                                        .getValue()),
-                                                        4))
+                                                Double.parseDouble(
+                                                        row.getMetricValues(indexBounceRate)
+                                                                .getValue()))
                                         .avgSessionDuration(
-                                                NumberUtils.formatDecimal(
-                                                        Double.parseDouble(
-                                                                row.getMetricValues(
-                                                                                indexAvgSessionDuration)
-                                                                        .getValue()),
-                                                        2))
+                                                Double.parseDouble(
+                                                        row.getMetricValues(indexAvgSessionDuration)
+                                                                .getValue()))
                                         .pageViewsPerSession(
-                                                NumberUtils.formatDecimal(
-                                                        Double.parseDouble(
-                                                                row.getMetricValues(
-                                                                                indexPageViewsPerSession)
-                                                                        .getValue()),
-                                                        2))
+                                                Double.parseDouble(
+                                                        row.getMetricValues(
+                                                                        indexPageViewsPerSession)
+                                                                .getValue()))
                                         .build())
                 .toList();
     }