You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dorm/zorm.go

18 lines
286 B

package dorm
import (
"gitee.com/chunanyong/zorm"
)
type ConfigZormClient struct {
Dns string // 地址
}
// ZormClient
// https://zorm.cn/
// https://www.yuque.com/u27016943/nrgi00
type ZormClient struct {
Db *zorm.DBDao // 驱动
config *ConfigZormClient // 配置
}