gorm/gorm.go
2017-10-15 11:19:21 +08:00

15 lines
291 B
Go

package gorm
// DB contains information for current db connection
type DB struct {
// Current operation
Value interface{} // Value current operation data
db SQLCommon
search *search
values map[string]interface{}
// Result result fields
Error error
RowsAffected int64
}