Commit 5e5a6aa3 authored by yanzg's avatar yanzg

下载视频

parent 59157bc4
...@@ -942,8 +942,8 @@ public abstract class BaseDaoImpl extends BaseDaoSql implements BaseDao { ...@@ -942,8 +942,8 @@ public abstract class BaseDaoImpl extends BaseDaoSql implements BaseDao {
public List<String> dataDao(DataDaoVo daoVo) { public List<String> dataDao(DataDaoVo daoVo) {
List<String> res = new ArrayList<>(); List<String> res = new ArrayList<>();
this.removeList(daoVo.getRemoves()); this.removeList(daoVo.getRemoves());
res.addAll(this.createList(daoVo.getCreates()));
res.addAll(this.updateList(daoVo.getUpdates())); res.addAll(this.updateList(daoVo.getUpdates()));
res.addAll(this.createList(daoVo.getCreates()));
return res; return res;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment