Commit 59157bc4 authored by yanzg's avatar yanzg

下载视频

parent 829ae9dd
...@@ -941,9 +941,9 @@ public abstract class BaseDaoImpl extends BaseDaoSql implements BaseDao { ...@@ -941,9 +941,9 @@ public abstract class BaseDaoImpl extends BaseDaoSql implements BaseDao {
@Override @Override
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());
res.addAll(this.createList(daoVo.getCreates())); res.addAll(this.createList(daoVo.getCreates()));
res.addAll(this.updateList(daoVo.getUpdates())); res.addAll(this.updateList(daoVo.getUpdates()));
this.removeList(daoVo.getRemoves());
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