Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alist-org
GitHub Repository: alist-org/alist
Path: blob/main/internal/model/label_file_binding.go
1560 views
1
package model
2
3
import "time"
4
5
type 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