这种mapper里自己写的sql,我以为mybatis-plus不会侵入了,谁知还是被侵入了,运行时自动给我添加了个条件 @Mapper public interface MyMapper extends BaseMapperX { @Select({"select * from system_users where 1=1 and deleted = 0 and username = #{username} limit 1"}) List getUser(@Param("username") String username); }  请问大佬们,mybatis-pluse 下 怎么做自己的sql才不会被侵入