重构一下数据库

This commit is contained in:
2026-01-18 20:35:21 +08:00
parent 485307e7de
commit ff4e069a7e
20 changed files with 477 additions and 131 deletions

View File

@@ -0,0 +1,22 @@
// =================================================================================
// This file is auto-generated by the GoFrame CLI tool. You may modify it as needed.
// =================================================================================
package dao
import (
"TrangleAgent/internal/dao/internal"
)
// forumBoardsDao is the data access object for the table forum_boards.
// You can define custom methods on it to extend its functionality as needed.
type forumBoardsDao struct {
*internal.ForumBoardsDao
}
var (
// ForumBoards is a globally accessible object for table forum_boards operations.
ForumBoards = forumBoardsDao{internal.NewForumBoardsDao()}
)
// Add your custom methods and functionality below.