You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
337 B
Go
9 lines
337 B
Go
5 years ago
|
package model
|
||
|
|
||
|
// IModel Implement the interface to acquire database information and initialize it.实现接口获取数据库信息获取并初始化
|
||
|
type IModel interface {
|
||
|
GenModel() DBInfo
|
||
|
GetDbName() string
|
||
|
GetPkgName() string // Getting package names through config outdir configuration.通过config outdir 配置获取包名
|
||
|
}
|