
* Update api.go.tpl 修复不创建资源标识时 批量删除 方法内 deletedBy 未声明的问题 * 可自动创建业务库 * 自动化业务库回滚适配 * 修复断点续传路径穿越漏洞 * 增加指定菜单亮起功能 * 增加菜单高亮功能,调整版本号 * fixed: 用户后台注册没接收手机号和邮箱 Co-authored-by: dzwvip <dzwvip@qq.com> Co-authored-by: SliverHorn <503551462@qq.com>
15 lines
594 B
Go
15 lines
594 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type AutoCodeHistory struct {
|
|
ID uint `json:"ID" gorm:"column:id"`
|
|
CreatedAt time.Time `json:"CreatedAt" gorm:"column:created_at"`
|
|
UpdatedAt time.Time `json:"UpdatedAt" gorm:"column:updated_at"`
|
|
BusinessDB string `json:"businessDB" gorm:"column:business_db"`
|
|
TableName string `json:"tableName" gorm:"column:table_name"`
|
|
StructName string `json:"structName" gorm:"column:struct_name"`
|
|
StructCNName string `json:"structCNName" gorm:"column:struct_cn_name"`
|
|
Flag int `json:"flag" gorm:"column:flag"`
|
|
}
|