(快速参考)

最小值

目的

确保某个值不低于最小值。

示例

age min: new Date()
price min: 0F

描述

设置实现 `java.lang.Comparable` 的类的最小值。该值的类型必须与属性相同。

请注意,约束条件只会评估一次,这对于依赖某个值(如 `java.util.Date` 实例)的约束条件来说可能是相关的。

class User {
    ...

    static constraints = {
        // this Date object is created when the constraints are evaluated, not
        // each time an instance of the User class is validated.
        age min: new Date()
    }
}

此约束条件影响 架构生成

错误代码:className.propertyName.min.notmet