注意1. 使用mybaits的resultMap查询时, 如果想传入多个参数(比如where 1=1动态多条件查询时)sqlmap文件中对应的方法中, selectList中一定要传实例对象(如person作为obj而不能用String等等只能一个参数的类)或map封装多参数传入map作为obj 注意2. sqlmap中的方法的parameterType和jdbcType可以不用写...
public IPage findSqlMapPage(Map<String,Object> map); BaseProvider类: public String findSqlPage(Map<String,Object> map){ String sql= (String) map.get("sql"); return sql; } 报错信息 java.lang.AssertionError at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMet...