Compare commits

..

No commits in common. "bf49850b41192a599ccaef993a3bdaf2d25326f3ec49dd92c1bafd5ef05099ab" and "159bde077974c872dcb2357ff012c48a59ab0a4974c8b724b9cd9d99ec19c3b6" have entirely different histories.

View File

@ -126,8 +126,8 @@ public class EbikeStatisticsController {
@GetMapping("getDiffOperatorOrderList") @GetMapping("getDiffOperatorOrderList")
public JsonResult<?> getDiffOperatorOrderList(String bikeCode, PageParam pageParam) { public JsonResult<?> getDiffOperatorOrderList(String bikeCode, PageParam pageParam) {
FeignDiffOperatorOrderList dto = new FeignDiffOperatorOrderList(); FeignDiffOperatorOrderList dto = new FeignDiffOperatorOrderList();
String staffId = StpUtil.getLoginIdAsString(); long staffId = StpUtil.getLoginIdAsLong();
CommonStaffInfo staffInfo = StpUtil.getSession().getModel(staffId, CommonStaffInfo.class); CommonStaffInfo staffInfo = StpUtil.getSession().getModel(String.valueOf(staffId), CommonStaffInfo.class);
if (staffInfo == null) { if (staffInfo == null) {
throw new EbikeException("当前用户信息不存在"); throw new EbikeException("当前用户信息不存在");
} }