2017-04-11 40 views

回答

0
Ebean.find(YourBean.class) 
.where() 
    .eq("name", "test") 
.orderBy().desc("name, id") 
.findList(); 

这就是你需要用逗号分隔属性。