Commit d62848bd authored by 赵啸非's avatar 赵啸非

添加apipost生成接口文档逻辑

parent 977b6248
......@@ -717,13 +717,13 @@ public class GentableServiceImpl extends AbstractCRUDServiceImpl<GentableDao, Ge
protected void removeAfter(Long[] ids, Context context, int result) throws AppException {
super.removeAfter(ids, context, result);
GentableColumnQuery condition = new GentableColumnQuery();
condition.setTableIdList(Arrays.asList(ids));
// GentableColumnQuery condition = new GentableColumnQuery();
// condition.setTableIdList(Arrays.asList(ids));
//
// gentableColumnService.getDao().delete(condition);
gentableColumnService.getDao().delete(condition);
// Long[] colIds = gentableColumnService.find(new GentableColumnQuery().tableIdList(Arrays.asList(ids))).stream().map(GentableColumnEntity::getId).toArray(Long[]::new);
// gentableColumnService.remove(colIds, context);
Long[] colIds = gentableColumnService.find(new GentableColumnQuery().tableIdList(Arrays.asList(ids))).stream().map(GentableColumnEntity::getId).toArray(Long[]::new);
gentableColumnService.remove(colIds, context);
}
......
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