增加自动化代码管理页面

This commit is contained in:
pixel
2021-07-13 19:45:21 +08:00
parent 982c4f4d67
commit e0f314d862
7 changed files with 119 additions and 5 deletions

View File

@@ -6,11 +6,11 @@ import "gin-vue-admin/global"
type SysAutoCodeHistory struct {
global.GVA_MODEL
TableName string
RequestMeta string `gorm:"type:text" json:"request_meta,omitempty"` // 前端传入的结构化信息
AutoCodePath string `gorm:"type:text"` // 其他meta信息 path;path
InjectionMeta string `gorm:"type:text"` // 注入的内容 RouterPath@functionName@RouterString;
ApiIDs string // api表注册内容
TableName string `json:"tableName"`
RequestMeta string `gorm:"type:text" json:"requestMeta,omitempty"` // 前端传入的结构化信息
AutoCodePath string `gorm:"type:text" json:"autoCodePath"` // 其他meta信息 path;path
InjectionMeta string `gorm:"type:text" json:"injectionMeta"` // 注入的内容 RouterPath@functionName@RouterString;
ApiIDs string `json:"apiIDs"` // api表注册内容
Flag int // 表示对应状态 0 代表创建, 1 代表回滚 ...
}