fix ui
All checks were successful
Deploy on Master Change / deploy (push) Successful in 44s

This commit is contained in:
2026-07-01 15:08:31 +07:00
parent 7a9c7a93ff
commit 7e84ddeaf9
8 changed files with 443 additions and 20 deletions

View File

@@ -212,4 +212,15 @@ type AppDownload struct {
func (AppDownload) TableName() string { return "app_downloads" }
// AppGuide đại diện cho tài liệu/video hướng dẫn ứng dụng dành cho sinh viên
type AppGuide 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 (AppGuide) TableName() string { return "app_guides" }