📜  grails 中的关系 - Groovy 代码示例

📅  最后修改于: 2022-03-11 15:01:05.245000             🧑  作者: Mango

代码示例1
//One-to-many
 class Author {
    static hasMany = [books: Book]
    String name
}

///Other domain
class Book {
    String title
}