fix - 彻底优化日志 没意义日志
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user