feat(ReverseEngine):初始化工程

This commit is contained in:
huangzj
2020-04-26 11:01:26 +08:00
commit a84341447a
22 changed files with 1199 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package entity
type FieldMessage struct {
FiledName string //类型名称
FieldType string //类型
OriginType string //数据库原始类型
/*
正常情况下tag的组合是 `TagKey:"pk/ not null/ FieldType"`
*/
TagKey string //tag的key
IsKey bool //是否主键
Comment string //注释内容
Default string //默认值信息
CanNull bool //是否可以为空
}