Commit 87e374fe authored by yanzg's avatar yanzg

下载视频

parent 1e43c512
......@@ -66,6 +66,9 @@ public abstract class BaseDaoImpl extends BaseDaoSql implements BaseDao {
}
protected List<String> createReplaceList(String sqlName, Collection collection) {
if (collection == null || collection.isEmpty()) {
return new ArrayList<>();
}
this.checkTable();
int size = collection.size();
// 写入主键,用于排序修改,防止互相锁数据
......
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