重构一下数据库

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"
)
// forumSectionsDao is the data access object for the table forum_sections.
// You can define custom methods on it to extend its functionality as needed.
type forumSectionsDao struct {
*internal.ForumSectionsDao
}
var (
// ForumSections is a globally accessible object for table forum_sections operations.
ForumSections = forumSectionsDao{internal.NewForumSectionsDao()}
)
// Add your custom methods and functionality below.