We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@Mapper public interface UserMapper { @KeyParam("#root") List<User> selectById(Integer id); @KeyParam("#root") int insert(String name); @KeyParam("id") int update(User user); @KeyParam("#root") int delete(Integer id); }
There was an error while loading. Please reload this page.