所以我需要像动态查找器这样的东西应该根据条件改变,让我用代码解释我的意思
以下代码按状态和 lastdateattended 查找所有员工
def employee = Employee.findAllByStatusAndLastDateAttended("INA",dateObject)
现在我在 Employee LastDateAttended 和 LastDateSigned 中有两个字段,现在我希望如果一条记录没有 LastDateAttended,那么它应该由 LastDateSigned 找到,否则是 LastDateAttended,所以另一个条件就像
def employee = Employee.findAllByStatusAndLastDateAttended("INA",dateObject)
我想加入并使用基于条件的查询,可以实现吗?,如果可能,请帮忙