selectByExample,selectByPrimaryKey和select的区别
通用mapper中selectByExample,selectByPrimaryKey和select的区别
1 selectByExample几乎可以解决所有的查询,select和selectByPrimary是简化的针对特定情况的解决方法
2 以主键为条件进行查询, selectByExample的代码如下:
Example example = new Example(Sku.class);
Example.Criteria criteria = example.createCriteria();
c
原创
2020-08-07 10:20:45 ·
1746 阅读 ·
0 评论