column注解中的columnDefinition属性用于覆盖数据库DDL中的语句:(MySql) @Column(columnDefinition = "int(11) DEFAULT NULL COMMENT '类型'") public Integer getType() { return type; }因此,又可以为该列添加comment注释。然而,columnDefinition不推荐使用,因为可能导致移植性不好,各个数据库不兼容等。