src/main/java/com/lf/server/service/sys/DepService.java
@@ -12,7 +12,6 @@ * @author sws * @date 2022-09-23 */ @Service public class DepService implements DepMapper { @Autowired @@ -55,12 +54,12 @@ } @Override public Integer updateDeps(List<DepEntity> depEntity) { return depMapper.updateDeps(depEntity); public Integer updateDeps(List<DepEntity> list) { return depMapper.updateDeps(list); } @Override public List<DepEntity> selectDepRecursive() { return depMapper.selectDepRecursive(); public List<DepEntity> selectDepRecursive(String name) { return depMapper.selectDepRecursive(name); } }