This commit is contained in:
Lemon
2023-08-25 17:13:34 +08:00
parent 64d90ce272
commit 543a23e597

View File

@@ -297,7 +297,8 @@ public class PileStationInfoController extends BaseController {
logger.info("绑定停车平台 params:{}", JSON.toJSONString(dto));
RestApiResponse<?> response = null;
try {
pileStationInfoService.bindParkingPlatform(dto);
int i = pileStationInfoService.bindParkingPlatform(dto);
response = new RestApiResponse<>(i);
}catch (BusinessException e) {
logger.error("绑定停车平台 error,", e);
response = new RestApiResponse<>(e.getCode(), e.getMessage());