Commit 58a44f63 authored by hanbing's avatar hanbing

[update] 场景评价热力图时间计算修改

parent ef0c9d10
......@@ -424,9 +424,9 @@ public class SceneEvaluateServiceImpl implements SceneEvaluateService {
calendar.set(Calendar.HOUR_OF_DAY, hour);
calendar.set(Calendar.MINUTE, minute);
int startStamp = (int)calendar.getTimeInMillis() / 1000;
int startStamp = (int)(calendar.getTimeInMillis() / 1000);
calendar.add(Calendar.MINUTE, 5);
int endStamp = (int)calendar.getTimeInMillis() / 1000;
int endStamp = (int)(calendar.getTimeInMillis() / 1000);
List<SceneEvaluateHeatMapVO> res = new ArrayList<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment