mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
32 lines
995 B
Go
32 lines
995 B
Go
package entity
|
|
|
|
import (
|
|
"mayfly-go/internal/redis/rdm"
|
|
tagentity "mayfly-go/internal/tag/domain/entity"
|
|
"mayfly-go/pkg/model"
|
|
"mayfly-go/pkg/utils/structx"
|
|
)
|
|
|
|
type Redis struct {
|
|
model.Model
|
|
|
|
Code string `orm:"column(code)" json:"code"`
|
|
Name string `orm:"column(name)" json:"name"`
|
|
Host string `orm:"column(host)" json:"host"`
|
|
Mode string `json:"mode"`
|
|
Db string `orm:"column(database)" json:"db"`
|
|
SshTunnelMachineId int `orm:"column(ssh_tunnel_machine_id)" json:"sshTunnelMachineId"` // ssh隧道机器id
|
|
Remark string
|
|
}
|
|
|
|
// ToRedisInfo 转换为redisInfo进行连接
|
|
func (r *Redis) ToRedisInfo(db int, authCert *tagentity.ResourceAuthCert, tagPath ...string) *rdm.RedisInfo {
|
|
redisInfo := new(rdm.RedisInfo)
|
|
_ = structx.Copy(redisInfo, r)
|
|
redisInfo.Username = authCert.Username
|
|
redisInfo.Password = authCert.Ciphertext
|
|
redisInfo.Db = db
|
|
redisInfo.CodePath = tagPath
|
|
return redisInfo
|
|
}
|