Categorygithub.com/andy-zhangtao/bwidow
modulepackage
0.1.0
Repository: https://github.com/andy-zhangtao/bwidow.git
Documentation: pkg.go.dev

# README

bwidow

A simple golang orm library. CodeBook is here

API

All API please reference here

# 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