管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-02-17 c761b4e1ac45748da482fbfd99a9ffb4e940f781
src/main/java/com/lf/server/controller/data/DirController.java
@@ -46,7 +46,7 @@
                entity.setCreateUser(ue.getId());
            }
            dirService.insertDir(entity);
            dirService.insert(entity);
            return success(entity.getId());
        } catch (Exception ex) {
@@ -67,7 +67,7 @@
                entity.setCreateUser(ue.getId());
            }
            int count = dirService.insertDirs(list);
            int count = dirService.inserts(list);
            return success(count);
        } catch (Exception ex) {
@@ -125,7 +125,7 @@
                entity.setUpdateUser(ue.getId());
            }
            int count = dirService.updateDir(entity);
            int count = dirService.update(entity);
            return success(count);
        } catch (Exception ex) {
@@ -149,7 +149,7 @@
                }
            }
            int count = dirService.updateDirs(list);
            int count = dirService.updates(list);
            return success(count);
        } catch (Exception ex) {