BPM 模型重构 8:修改部 model 部署逻辑,支付任务规则的复制

This commit is contained in:
YunaiV
2022-01-13 23:28:14 +08:00
parent 8e9cb110c7
commit fe651b42ec
12 changed files with 132 additions and 23 deletions

View File

@ -49,4 +49,9 @@ public interface BaseMapperX<T> extends BaseMapper<T> {
return selectList(new QueryWrapper<T>().in(field, values));
}
default void insertBatch(Collection<T> entities) {
// TODO 芋艿:修改成支持批量的
entities.forEach(this::insert);
}
}