Grails - GORM - 一对多的查找数据

时间:2014-03-13 18:24:16

标签: grails gorm lookup

我想使用查找表来获取类型代码列表,代码保存在产品表中。产品只能有一种类别,并且可以为空。到目前为止,这是我的代码。这是正确的方法吗?我认为CategoryType中的id映射将用作Product中的列。但它试图在产品表中找到category_cd_id。即使我在静态映射中将CategoryCd映射到category_cd,也不会使用它。

class Product {
  String productId
  String productName

  CategoryType categoryCd

      static mapping = {
        table 'A_PRODUCT'
        id column:'product_id'
        version false
    } 
}

class CategotyType {
  String categoryCd
  String categoryName

      static mapping = {
        table 'A_CATEGORY_TYPE'
        id column:'category_cd'
        version false
    } 
}

0 个答案:

没有答案