mybatisPlus的Map入参方法查询

		在其他的持久层框架不太清楚,但在mybatis和mybatisPlus中,如果用Map方法封装参数的话,在Map的key值必须是数据库的字段,value是自己的查询条件的值
		比如说:select * from student where name = ?
		这个sql语句,你必须写成map.put(name,'zhangsan');

你可能感兴趣的:(mybatis,java,mysql)