fix - 彻底优化日志 没意义日志

This commit is contained in:
2026-06-09 01:04:56 +08:00
parent 2831f6b35a
commit a7475ccc9a
8 changed files with 8 additions and 16 deletions

View File

@@ -69,7 +69,6 @@ public class VenuePriceController extends OmsController {
@RequestMapping(value = "/venue/findPrice", method = RequestMethod.GET)
public ResponseDTO findPrice(@RequestParam("venueId") Integer venueId) {
List<VenuePrice> price = venuePriceService.findPrice(venueId);
System.out.println(price);
return ResponseDTO.ok().addAttribute("price", price);
}

View File

@@ -102,11 +102,7 @@ public class ExcelUtils {
for (Row row : rowsList) {
Iterator<Cell> it = row.cellIterator();
while (it.hasNext()) {
Cell cell = it.next();
try {
System.out.println(cell.getStringCellValue());
} catch (Exception e) {
}
it.next();
}
}
}