23 lines
301 B
Go
23 lines
301 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
// Channel 连接认证模型
|
|
type Channel struct {
|
|
gorm.Model
|
|
UserId uint
|
|
NodeId uint
|
|
UserAddr string
|
|
NodePort int
|
|
AuthIp bool
|
|
AuthPass bool
|
|
Protocol string
|
|
Username string
|
|
Password string
|
|
Expiration time.Time
|
|
}
|