Hello ,
There are comments that the table creation failed, and the version number needs to be upgraded or the app needs to be uninstalled and reinstalled ,Is there any other solution? For the code below
public void add(List bean) {
if (bean == null || bean.isEmpty()) {
return;
}
try {
for (xxxx entity : bean) {
noticeDao.createOrUpdate(entity);
}
} catch (Exception e) {
e.printStackTrace();
}
}