看报错描述是mapper相关的文件出了问题。
复查了代码,发现是@Mapper注解的import包导成了
@Mapper
import
import org.mapstruct.Mapper;
正确的包应该是
import org.apache.ibatis.annotations.Mapper;