column注解中的columnDefinition属性用于覆盖数据库DDL中的语句:(MySql)
@Column(columnDefinition = "int(11) DEFAULT NULL COMMENT '类型'") public Integer getType() { return type; }
因此,又可以为该列添加comment注释。
然而,columnDefinition不推荐使用,因为可能导致移植性不好,各个数据库不兼容等。
column注解中的columnDefinition属性用于覆盖数据库DDL中的语句:(MySql)
@Column(columnDefinition = "int(11) DEFAULT NULL COMMENT '类型'") public Integer getType() { return type; }
因此,又可以为该列添加comment注释。
然而,columnDefinition不推荐使用,因为可能导致移植性不好,各个数据库不兼容等。
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。