mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-06 19:10:20 +08:00
update
This commit is contained in:
@@ -91,7 +91,7 @@ public class BusinessStationInfoController extends BaseController {
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询订单数量趋势信息
|
||||
* 查询站点订单数量趋势信息
|
||||
* @return
|
||||
*/
|
||||
@PostMapping("/getStationOrderQuantityInfo")
|
||||
@@ -101,10 +101,10 @@ public class BusinessStationInfoController extends BaseController {
|
||||
StationBusinessAnalyzeInfoVO vo = pileStationInfoService.getStationOrderQuantityInfo(dto);
|
||||
response = new RestApiResponse<>(ImmutableMap.of("stationBusinessAnalyzeInfoVO", vo));
|
||||
} catch (Exception e) {
|
||||
logger.error("查询订单数量趋势信息 error", e);
|
||||
logger.error("查询站点订单数量趋势信息 error", e);
|
||||
response = new RestApiResponse<>(e);
|
||||
}
|
||||
logger.info("查询订单数量趋势信息 params:{}, result:{}", JSONObject.toJSONString(dto), response);
|
||||
logger.info("查询站点订单数量趋势信息 params:{}, result:{}", JSONObject.toJSONString(dto), response);
|
||||
return response;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -518,6 +518,9 @@ public class PileReservationInfoServiceImpl implements PileReservationInfoServic
|
||||
@Override
|
||||
public PileReservationInfoVO queryReservationInfo(PileReservationDTO dto) {
|
||||
PileReservationInfo pileReservationInfo = pileReservationInfoMapper.selectByPileConnectorCode(dto.getPileConnectorCode());
|
||||
if (pileReservationInfo == null) {
|
||||
return null;
|
||||
}
|
||||
PileReservationInfoVO build = PileReservationInfoVO.builder()
|
||||
.reservedId(pileReservationInfo.getId() + "")
|
||||
.pileSn(pileReservationInfo.getPileSn())
|
||||
|
||||
Reference in New Issue
Block a user