0
例如項目的獨特屬性列表中我有這樣的領域類:創建Groovy中
class PaymentSystems {
String paymentSystemName
long bill
boolean enabled = true
static belongsTo = [cafee: Cafee]
static constraints = {
bill nullable: true
cafee nullable: true
}
}
此字符串可以返回項目的唯一列表:
def paymentSystems = PaymentSystems.list().unique()
但我想創造獨特列表中繼,例如,在paymentSystemName - 屬性,即我想獲得具有唯一的paymentSystemName屬性的列表。這個怎麼做?