teldrive/pkg/models/channel.go

9 lines
216 B
Go
Raw Normal View History

2023-09-20 03:20:44 +08:00
package models
type Channel struct {
ChannelID int64 `gorm:"type:bigint;primaryKey"`
ChannelName string `gorm:"type:text"`
UserID int64 `gorm:"type:bigint;"`
Selected bool `gorm:"type:boolean;"`
}