update 电单车协议

This commit is contained in:
Guoqs
2024-08-30 11:42:14 +08:00
parent dc54294aa1
commit 8b06de887f

View File

@@ -43,7 +43,7 @@ public class OccupyOrderController extends BaseController {
*/
@GetMapping("/getStationOccupyFee/{stationId}")
public RestApiResponse<?> getStationOccupyFee(@PathVariable("stationId") String stationId) {
logger.info("查询站点占桩费率 params:{}", stationId);
// logger.info("查询站点占桩费率 params:{}", stationId);
RestApiResponse<?> response = null;
try {
BillingTemplateVO vo = pileBillingTemplateService.queryUsedBillingTemplate(stationId);
@@ -52,7 +52,7 @@ public class OccupyOrderController extends BaseController {
logger.error("查询站点占桩费率 error,", e);
response = new RestApiResponse<>(e);
}
logger.info("查询站点占桩费率 result:{}", response);
logger.info("查询站点占桩费率 params:{}, result:{}", stationId, response);
return response;
}