Update PmsProductServiceImpl.java

This commit is contained in:
macro
2024-04-11 14:20:17 +08:00
parent 0abe053320
commit 03bcfa2e48

View File

@@ -319,7 +319,7 @@ public class PmsProductServiceImpl implements PmsProductService {
Method insertList = dao.getClass().getMethod("insertList", List.class);
insertList.invoke(dao, dataList);
} catch (Exception e) {
LOGGER.warn("创建品出错:{}", e.getMessage());
LOGGER.warn("创建品出错:{}", e.getMessage());
throw new RuntimeException(e.getMessage());
}
}