Commit 366d81b8 by zhangxk

修改事件结束时间,暂定和开始时间一致

1 parent a85a65d6
......@@ -55,9 +55,9 @@ public class BehaviorProcess implements Process {
long time = DateUtil.parse(DateUtil.FORMAT_FULL, eventDtStr).getTime();
model.setEventStartSecond((int) (time / 1000));
model.setEventStartMillisecond((int) (time % 1000));
// todo 结束时间待完成
model.setEventEndSecond(0);
model.setEventEndMillisecond(0);
//结束时间暂定和开始时间一致
model.setEventEndSecond((int) (time / 1000));
model.setEventEndMillisecond((int) (time % 1000));
}
String eventType = jsonObject.getString("event_type");
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!