码迷,mamicode.com
首页 > 其他好文 > 详细

Criteria Example()

时间:2018-11-17 21:29:03      阅读:745      评论:0      收藏:0      [点我收藏+]

标签:ide   style   ret   rand   sele   tar   dex   gen   creat   

用法

@Override
    public PageResult findPage(TbBrand brand, int pageNum, int pageSize) {
        
        PageHelper.startPage(pageNum, pageSize);//分页    
        
        TbBrandExample example=new TbBrandExample();
        
        Criteria criteria = example.createCriteria();
        if(brand!=null){
            if(brand.getName()!=null && brand.getName().length()>0){
                criteria.andNameLike("%"+brand.getName()+"%");
            }
            if(brand.getFirstChar()!=null && brand.getFirstChar().length()>0){
                criteria.andFirstCharLike("%"+brand.getFirstChar()+"%");
            }            
        }
        
        Page<TbBrand> page = (Page<TbBrand>) brandMapper.selectByExample(example);
        
        return new PageResult(page.getTotal(), page.getResult());
    }

 

Criteria Example()

标签:ide   style   ret   rand   sele   tar   dex   gen   creat   

原文地址:https://www.cnblogs.com/duanwandao/p/9975624.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!