gorm/gorm.go
2018-02-13 12:48:50 +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
}