我有这样的方法
static getList (long colorid) {
ColorShades.findAll 'from ColorShades where color.id = :colorid', [colorid: colorid]
}
我这样使用它:
def shadeIdsForAColor = ColorShades.getList(colorid as long)
问题
该方法返回一个ArrayList
对象ColorShade
,每个对象都有一个shadeId
。
我该怎么做才能将这些 id 作为整数列表放入shadeIdsForAColor
变量中?