-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from maiqingqiang/v1.2.0
V1.2.0
- Loading branch information
Showing
58 changed files
with
4,867 additions
and
896 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
.idea | ||
.qodana | ||
build | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Supported | ||
|
||
## Supported SQL to Struct conversion | ||
|
||
- [x] Generic Struct | ||
- [x] [Gorm](https://github.com/go-gorm/gorm) | ||
- [x] [Xorm](https://gitea.com/xorm/xorm) | ||
- [x] [GoFrame](https://github.com/gogf/gf) | ||
- [ ] [Beego](https://github.com/beego/beego) 🚧[WIP] | ||
- [ ] [sqlx](https://github.com/jmoiron/sqlx) 🚧[WIP] | ||
|
||
## Supported ORM Tags Live Template | ||
|
||
[Go ORM Tags.xml](./src/main/resources/liveTemplates/Go%20ORM%20Tags.xml) | ||
|
||
| Tag | ORM | | ||
|--------------|-------------------------------------------------------------------------| | ||
| `gorm:""` | [Gorm](https://github.com/go-gorm/gorm) | | ||
| `xorm:""` | [Xorm](https://gitea.com/xorm/xorm) | | ||
| `orm:"-"` | [GoFrame](https://github.com/gogf/gf) | | ||
| `orm:"-"` | [Beego](https://github.com/beego/beego) | | ||
| `gqlgen:"-"` | [ent.](https://entgo.io/) | | ||
| `boil:"-"` | [SQLBoiler](https://github.com/volatiletech/sqlboiler) | | ||
| `pg:"-"` | [pg](https://github.com/go-pg/pg) | | ||
| `bun:"-"` | [Bun](https://github.com/uptrace/bun) | | ||
| `reform:"-"` | [reform](https://github.com/go-reform/reform) | | ||
| `aorm:"-"` | [aorm](https://github.com/tangpanqing/aorm) | | ||
| `db:"-"` | [sqlx](https://github.com/jmoiron/sqlx) | | ||
| `db:"-"` | [gorp](https://github.com/go-gorp/gorp) | | ||
| `db:"-"` | [upper/db](https://github.com/upper/db) | | ||
| `db:"-"` | [Buffalo Model](https://gobuffalo.io/pt/documentation/database/models/) | | ||
| `db:"-"` | [go-sqlbuilder](https://github.com/huandu/go-sqlbuilder) | | ||
| `db:"-"` | [rel](https://github.com/go-rel/rel) | | ||
| `db:"-"` | [Bob](https://github.com/stephenafamo/bob) | | ||
| `db:"-"` | [lore](https://github.com/abrahambotros/lore) | | ||
| `db:"-"` | [GoBatis](https://github.com/mei-rune/GoBatis) | | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
module goframe | ||
|
||
go 1.20 | ||
|
||
require github.com/gogf/gf/v2 v2.4.4 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v1.1.0 // indirect | ||
github.com/clbanning/mxj/v2 v2.5.5 // indirect | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
github.com/go-logr/logr v1.2.3 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/grokify/html-strip-tags-go v0.0.1 // indirect | ||
github.com/magiconair/properties v1.8.6 // indirect | ||
github.com/mattn/go-colorable v0.1.9 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mattn/go-runewidth v0.0.9 // indirect | ||
github.com/olekukonko/tablewriter v0.0.5 // indirect | ||
go.opentelemetry.io/otel v1.7.0 // indirect | ||
go.opentelemetry.io/otel/sdk v1.7.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.7.0 // indirect | ||
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect | ||
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect | ||
golang.org/x/text v0.3.8-0.20211105212822-18b340fc7af2 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Oops, something went wrong.