add tai lieu system
All checks were successful
Deploy on Master Change / deploy (push) Successful in 43s

This commit is contained in:
2026-07-01 14:47:46 +07:00
parent 6919513165
commit dd766206f7
15 changed files with 952 additions and 140 deletions

View File

@@ -188,3 +188,15 @@ type SystemSetting struct {
func (SystemSetting) TableName() string { return "system_settings" }
// GuideLink đại diện cho tài liệu hướng dẫn Google Docs public
type GuideLink struct {
ID uint `gorm:"primaryKey" json:"id"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
Title string `gorm:"column:title;size:512;not null" json:"title"`
URL string `gorm:"column:url;size:1024;not null" json:"url"`
}
func (GuideLink) TableName() string { return "guide_links" }