go 数据库包之"github.com/didi/gendry/builder"
摘要:我从源码中找了一个例子 BuildUpdate import ( "database/sql" _ "github.com/go-sql-driver/mysql" qb "github.com/didi/gendry/builder" ) #### `BuildUpdate` sign: `Bui
阅读全文
golang-map转结构体
摘要:package main import ( "fmt" "github.com/mitchellh/mapstructure" ) type User struct { Name string Age int } func MapToStruct() { mapInstance := make(ma
阅读全文
git 基本操作
摘要:Git global setup git config --global user.name "xxxxx" git config --global user.email "xxx@xxx.com" Create a new repository git clone https://github.c
阅读全文