mirror of
https://github.com/beego/bee.git
synced 2025-07-04 01:20:19 +00:00
if tag.Comment is empty, the ORM tag string will not contain description
This commit is contained in:
@ -256,8 +256,11 @@ func (tag *OrmTag) String() string {
|
||||
if len(ormOptions) == 0 {
|
||||
return ""
|
||||
}
|
||||
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) {
|
||||
var mode byte
|
||||
|
Reference in New Issue
Block a user