|
@@ -2,6 +2,7 @@ package cn.com.ty.lift.ud.chat.service.impl;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
import java.time.LocalDateTime;
|
|
|
+import java.time.ZoneOffset;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
|
|
@@ -761,7 +762,7 @@ public class LiftCaseServiceImpl extends ServiceImpl<LiftCaseMapper, LiftCaseEnt
|
|
|
RoomInfo roomInfo = new RoomInfo();
|
|
|
roomInfo.setSessionid(entity.getSessionid());
|
|
|
roomInfo.setDataTable(entity.getDataTable());
|
|
|
- roomInfo.setLastTime(entity.getCreateTime());
|
|
|
+ roomInfo.setLastTime(entity.getCreateTime().toInstant(ZoneOffset.of("+8")).toEpochMilli());
|
|
|
UserInfo userInfo1 = new UserInfo();
|
|
|
userInfo1.setUserId(entity.getUserId());
|
|
|
List<UserInfo> userList = new ArrayList<>();
|