1package model 2 3import "time" 4 5type LabelFileBinding struct { 6 ID uint `json:"id" gorm:"primaryKey"` // unique key 7 UserId uint `json:"user_id"` // use to user_id 8 LabelId uint `json:"label_id"` // use to label_id 9 FileName string `json:"file_name"` // use to file_name 10 CreateTime time.Time `json:"create_time"` 11} 12 13