# Conflicts:
#	jsowell-pile/src/main/java/com/jsowell/pile/service/impl/OrderBasicInfoServiceImpl.java
This commit is contained in:
2023-08-25 17:23:35 +08:00
5 changed files with 278 additions and 121 deletions

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());