-1
Class Vote {
       String name;
       Date startDate;
    Date endDate;
    }

当结束日期优于新日期时,我想显示所有投票

4

1 回答 1

1

Grails 文档向您显示条件中的运算符列表。在您的情况下,您可以使用gt并传递当前日期。

def votes = Vote.createCriteria().list() {
  gt('endDate', new Date())
}
于 2013-05-16T17:19:30.353 回答