代码拉取完成,页面将自动刷新
package gen
import (
"fmt"
"strings"
)
type tableNameAndCommentFilterMapKey struct {
TableName string
TableComment string
}
type tableInfo struct {
TableName string
TableComment string
Package string
TableNamePrefix string
ModName string
IsNew bool
Columns []tableColumnInfo
}
type tableColumnInfo struct {
ColumnName string
DataType string // go 中的type
ColumType string
ColumnComment string
IsPrimaryKey bool
Tag string
}
func _getGoDataType(sqlDataType string) string {
switch sqlDataType {
case "bigint", "int", "tinyint":
return "int64"
case "decimal":
return "float64"
case "varchar", "text", "time", "mediumtext":
return "string"
default:
return ""
}
}
func _getFieldComment(comment string) string {
if len(comment) == 0 {
return ""
}
return fmt.Sprintf("// %s", strings.ReplaceAll(strings.ReplaceAll(
strings.ReplaceAll(
strings.ReplaceAll(
comment, "\r\n", " "), "\n", " "), "\r\n\r", " "), "\r", ""))
}
func _getIsPrimaryKey(sqlIsPrimaryKey int64) bool {
if sqlIsPrimaryKey == 1 {
return true
}
return false
}
func _getModelFieldTag(columnName string, isPrimaryKey bool) string {
priStr := ""
if isPrimaryKey {
priStr = ";primary_key"
}
return fmt.Sprintf("`gorm:\"column:%s%s\"`", columnName, priStr)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。