# Functions
GetWidow 获取当前全局Widow.
# Constants
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
DRIVER_MONGO Mongo驱动.
DRIVER_PQ Postgresql驱动.
# Variables
##### Example
```go
//BWidow Init
bw := bwidow.GetWidow()
err := bw.Driver(bwidow.DRIVER_MONGO)
if err != nil {
logrus.WithFields(logrus.Fields{"Init Error": err}).Errorln(ModuleName)
return
}
//Setting Model And Table
bw.Map(User{}, "devex_user_copy")
u := User{
CurrentAuthority: "BW",
}
//Delete All Matched Record
num, err := bw.Delete(&u, []string{"currentauthority"})
if err != nil {
logrus.Errorln(err)
return
}
logrus.WithFields(logrus.Fields{"change": num}).Info(ModuleName)
```
*/.
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author