generate_business_table_view.go
496 字节
package command
type GenerateBusinessTableViewRequest struct {
Host string `json:"host"`
Port string `json:"port"`
User string `json:"user"`
Password string `json:"password"`
DBName string `json:"dbName"`
SchemaName string `json:"schemaName,optional,default=public"` // 模式名称
DBType string `json:"dbType,optional,default=postgresql"`
}
type DBTablesRequest struct {
GenerateBusinessTableViewRequest
ByteBankDBName string
ByteBankDBZhName string
}