mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
18 lines
316 B
Go
18 lines
316 B
Go
package entity
|
|
|
|
import (
|
|
"mayfly-go/base/model"
|
|
)
|
|
|
|
type Redis struct {
|
|
model.Model
|
|
|
|
Host string `orm:"column(host)" json:"host"`
|
|
Password string `orm:"column(password)" json:"-"`
|
|
Db int `orm:"column(database)" json:"db"`
|
|
ProjectId uint64
|
|
Project string
|
|
EnvId uint64
|
|
Env string
|
|
}
|