|
@@ -261,7 +261,7 @@ public class RPaperAnalyzeService {
|
261
|
261
|
Integer usetimes = Integer.parseInt(map.get("costtime").toString());
|
262
|
262
|
Integer stunum = Integer.parseInt(map.get("stunum").toString());
|
263
|
263
|
|
264
|
|
- double avgtime = N_Utils.formatAvg(day * stunum,usetimes);
|
|
264
|
+ double avgtime = N_Utils.formatAvg(usetimes, day * stunum);
|
265
|
265
|
map.put("avgtime",avgtime);
|
266
|
266
|
}
|
267
|
267
|
}
|
|
@@ -280,7 +280,7 @@ public class RPaperAnalyzeService {
|
280
|
280
|
Integer usetimes = Integer.parseInt(map.get("costtime").toString());
|
281
|
281
|
Integer stunum = Integer.parseInt(map.get("stunum").toString());
|
282
|
282
|
|
283
|
|
- double avgtime = N_Utils.formatAvg(day * stunum,usetimes);
|
|
283
|
+ double avgtime = N_Utils.formatAvg(usetimes, day * stunum);
|
284
|
284
|
map.put("avgtime",avgtime);
|
285
|
285
|
}
|
286
|
286
|
}
|