if tag.Comment is empty, the ORM tag string will not contain description

This commit is contained in:
hudangwei 2017-05-30 19:43:40 +08:00
parent f5471680e4
commit 812b8c4e5b
1 changed files with 4 additions and 1 deletions

View File

@ -256,7 +256,10 @@ func (tag *OrmTag) String() string {
if len(ormOptions) == 0 {
return ""
}
return fmt.Sprintf("`orm:\"%s\" description:\"%s\"`", strings.Join(ormOptions, ";"), tag.Comment)
if tag.Comment != "" {
return fmt.Sprintf("`orm:\"%s\" description:\"%s\"`", strings.Join(ormOptions, ";"), tag.Comment)
}
return fmt.Sprintf("`orm:\"%s\"`", strings.Join(ormOptions, ";"))
}
func GenerateAppcode(driver, connStr, level, tables, currpath string) {