26 lines
934 B
Go
26 lines
934 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// InfraDataSourceConfig is the golang structure of table infra_data_source_config for DAO operations like Where/Data.
|
|
type InfraDataSourceConfig struct {
|
|
g.Meta `orm:"table:infra_data_source_config, do:true"`
|
|
Id interface{} // 主键编号
|
|
Name interface{} // 参数名称
|
|
Url interface{} // 数据源连接
|
|
Username interface{} // 用户名
|
|
Password interface{} // 密码
|
|
Creator interface{} // 创建者
|
|
CreateTime *gtime.Time // 创建时间
|
|
Updater interface{} // 更新者
|
|
UpdateTime *gtime.Time // 更新时间
|
|
Deleted interface{} // 是否删除
|
|
}
|