【转】Hibernate数据过滤

Restrictions.eq         =  
Restrictions.allEq      利用Map来进行多个等于的限制   
Restrictions.gt         >   
Restrictions.ge         >=   
Restrictions.lt         < 
Restrictions.le         <=   
Restrictions.between    BETWEEN  
Restrictions.like       LIKE  
Restrictions.in         in  
Restrictions.and        and  
Restrictions.or         or  
Restrictions.sqlRestriction     用SQL限定查询

原文地址:https://www.cnblogs.com/minideas/p/2125841.html