Documentation
¶
Overview ¶
Package gen 命令行的 gen 命令
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var EImportsHead = map[string]string{
"stirng": `"string"`,
"time.Time": `"time"`,
"gorm.Model": `"gorm.io/gorm"`,
"fmt": `"fmt"`,
"datatypes.JSON": `"gorm.io/datatypes"`,
"datatypes.Date": `"gorm.io/datatypes"`,
}
View Source
var GModel = &cobra.Command{
Use: "make:model",
Short: "从db创建gorm",
Run: runGModel,
}
View Source
var TypeMysqlDicMp = map[string]string{
"smallint": "int16",
"smallint unsigned": "uint16",
"int": "int",
"int unsigned": "uint",
"bigint": "int64",
"bigint unsigned": "uint64",
"mediumint": "int32",
"mediumint unsigned": "uint32",
"varchar": "string",
"char": "string",
"date": "time.Time",
"datetime": "time.Time",
"bit(1)": "[]uint8",
"tinyint": "int8",
"tinyint unsigned": "uint8",
"tinyint(1)": "int",
"tinyint(1) unsigned": "int",
"json": "string",
"text": "string",
"timestamp": "time.Time",
"double": "float64",
"double unsigned": "float64",
"mediumtext": "string",
"longtext": "string",
"float": "float32",
"float unsigned": "float32",
"tinytext": "string",
"enum": "string",
"time": "time.Time",
"tinyblob": "[]byte",
"blob": "[]byte",
"mediumblob": "[]byte",
"longblob": "[]byte",
"integer": "int64",
"numeric": "float64",
"smalldatetime": "time.Time",
"nvarchar": "string",
"real": "float32",
"binary": "[]byte",
}
View Source
var TypeMysqlMatchList = []struct { Key string Value string }{ {`^(tinyint)[(]\d+[)] unsigned`, "uint8"}, {`^(smallint)[(]\d+[)] unsigned`, "uint16"}, {`^(int)[(]\d+[)] unsigned`, "uint32"}, {`^(bigint)[(]\d+[)] unsigned`, "uint64"}, {`^(float)[(]\d+,\d+[)] unsigned`, "float64"}, {`^(double)[(]\d+,\d+[)] unsigned`, "float64"}, {`^(tinyint)[(]\d+[)]`, "int8"}, {`^(smallint)[(]\d+[)]`, "int16"}, {`^(int)[(]\d+[)]`, "int"}, {`^(bigint)[(]\d+[)]`, "int64"}, {`^(char)[(]\d+[)]`, "string"}, {`^(enum)[(](.)+[)]`, "string"}, {`^(varchar)[(]\d+[)]`, "string"}, {`^(varbinary)[(]\d+[)]`, "[]byte"}, {`^(blob)[(]\d+[)]`, "[]byte"}, {`^(binary)[(]\d+[)]`, "[]byte"}, {`^(decimal)[(]\d+,\d+[)]`, "float64"}, {`^(mediumint)[(]\d+[)]`, "int16"}, {`^(mediumint)[(]\d+[)] unsigned`, "uint16"}, {`^(double)[(]\d+,\d+[)]`, "float64"}, {`^(float)[(]\d+,\d+[)]`, "float64"}, {`^(datetime)[(]\d+[)]`, "time.Time"}, {`^(bit)[(]\d+[)]`, "[]uint8"}, {`^(text)[(]\d+[)]`, "string"}, {`^(integer)[(]\d+[)]`, "int"}, {`^(timestamp)[(]\d+[)]`, "time.Time"}, {`^(geometry)[(]\d+[)]`, "[]byte"}, {`^(set)[(][\s\S]+[)]`, "string"}, }
Functions ¶
func GetCommands ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.