当表字段的注释存在换行的时候,代码生成器生成的Entity会有语法错误。 比如: ``` @Entity.Column(value = "type", remark = "数据类型 uint8/uint16/uint32/int8/int16/int32/float32/float64/utf8json") private String type; ``` 由于注释里存在换行,结果导致remark换行。