摘要: class TakeAwardAct { String title; static hasMany=[awards:Award] static constraints = { } String toString() { "${title}" }}class Award { String name; static belongsTo=[act:TakeAwardAct] static hasMany=[records:TakeAwardRecord] static constraints = { }}class... 阅读全文
posted @ 2014-01-17 15:28 Lost in code 阅读(135) 评论(0) 推荐(0) 编辑