哪位大佬可以帮我看看???都是从一个SVN下载下来的,别人能install成功,我的就报错

别人从SVN checkout出来可以打包成功,但是我的出现如下错误:

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 12.257 s
[INFO] Finished at: 2019-02-19T09:37:12+08:00
[INFO] Final Memory: 50M/491M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project bt-biz-sys: Compilation failure
[ERROR] [14,7] 错误: SequenceServiceImpl不是抽象的, 并且未覆盖ISequenceService中的抽象方法getSequence(String,String,String)
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :bt-biz-sys

Process finished with exit code 1

SequenceServiceImpl.java:
图片说明

ISequenceService:
图片说明

怎么看不到这个方法getSequence(String,String,String)

图片说明
从你的报错信息以及你的代码来看,个人感觉你并没有理解什么是实现接口,以及怎么算实现,少注解的问题。还望采纳,谢谢。

但从错误上看没有实现getSequence(String,String,String)这个方法,但是从你后面贴的图片上看,又没有这个方法,所以看看代码不是最新编译的代码不是最新的,或者有重名的接口,实现的其实是另外一个接口,希望有点帮助

是不是一个项目依赖另一个项目的?如果是这样的话要先到被依赖的项目install一下在到这个里面查询执行,这是我之前遇到的问题,希望能帮到你