clean ui
This commit is contained in:
@@ -122,6 +122,18 @@ type AppPoolEntry struct {
|
||||
|
||||
func (AppPoolEntry) TableName() string { return "app_pool" }
|
||||
|
||||
// AppTemplate — khung ứng dụng (bộ keyword whitelist) dùng chung cho lớp / phòng thi
|
||||
type AppTemplate struct {
|
||||
ID uint `gorm:"primaryKey" json:"id"`
|
||||
CreatedAt time.Time `json:"createdAt"`
|
||||
UpdatedAt time.Time `json:"updatedAt"`
|
||||
Name string `gorm:"column:name;size:120;not null" json:"name"`
|
||||
Description string `gorm:"column:description;type:text" json:"description"`
|
||||
Keywords string `gorm:"column:keywords;type:text;not null" json:"keywords"`
|
||||
}
|
||||
|
||||
func (AppTemplate) TableName() string { return "app_templates" }
|
||||
|
||||
// WifiPoolEntry — kho WiFi phát hiện từ máy sinh viên (SSID + BSSID điểm phát)
|
||||
type WifiPoolEntry struct {
|
||||
ID uint `gorm:"primaryKey" json:"id"`
|
||||
|
||||
Reference in New Issue
Block a user