This commit is contained in:
mubai
2023-12-23 22:32:52 +08:00
parent d85dbe915c
commit b48e53a637
151 changed files with 12451 additions and 1382 deletions

View File

@@ -0,0 +1,15 @@
package SystemInit
import "server/model/system"
// TableInIt 初始化 mysql 数据库相关数据
func TableInIt() {
// 创建 User Table
system.CreateUserTable()
// 初始化管理员账户
system.InitAdminAccount()
// 创建 Search Table
system.CreateSearchTable()
// 创建图片信息管理表
system.CreatePictureTable()
}