摘要:
1.new对象覆盖 2.map覆盖(把map放到list中) 参考地址:https://www.cnblogs.com/neillee/p/5406394.html //代码一 List<User> list = new ArrayList<>(); User user = new User(); 阅读全文
摘要:
select * from a <where> <!-- 模糊查询 --> <if test="null != name and name !=''"> and name like '%'||#{name}||'%' <!--或者name like '%${name}%'--> </if> <if 阅读全文