mybatis使用xml形式配置
以这个注解形式的查询代码为例
@Select("select * from emp where name like concat('%',#{name},'%') and gender =#{gender} and entrydate between #{begin} and #{end} order by update_time desc ")
public List<Emp> list(String name, Short gender, LocalDate begin,LocalDate end);
去mybatis官网复制xml结构
这样就行了