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);
}

 

posted on 2023-02-19 12:03  //君莫笑  阅读(26)  评论(0)    收藏  举报

导航