Java工程问题:Could not autowire. No beans of 'AttachmentMapper' type found.
在mapper类前面加上 @Mapper
@Mapper public interface FilesMapper { int delete(Integer fileId); int insert(Files record); Files select(Integer fileId); List<Files> query(Files record); int update(Files record); }