package models import ( "time" "gorm.io/gorm" ) // Channel 连接认证模型 type Channel struct { gorm.Model UserId uint NodeId uint Protocol string Username string Password string AuthIp bool AuthPass bool Expiration time.Time }