|
@@ -7,7 +7,7 @@ goctl model 为go-zero下的工具模块中的组件之一,目前支持识别m
|
|
|
* 通过ddl生成
|
|
|
|
|
|
```shell script
|
|
|
- goctl model mysql ddl -src="./*.sql" -dir="./sql/model" -c=true
|
|
|
+ goctl model mysql ddl -src="./*.sql" -dir="./sql/model" -c
|
|
|
```
|
|
|
|
|
|
执行上述命令后即可快速生成CURD代码。
|
|
@@ -29,156 +29,191 @@ goctl model 为go-zero下的工具模块中的组件之一,目前支持识别m
|
|
|
```go
|
|
|
|
|
|
package model
|
|
|
+
|
|
|
+ import (
|
|
|
+ "database/sql"
|
|
|
+ "fmt"
|
|
|
+ "strings"
|
|
|
+ "time"
|
|
|
+
|
|
|
+ "github.com/tal-tech/go-zero/core/stores/cache"
|
|
|
+ "github.com/tal-tech/go-zero/core/stores/sqlc"
|
|
|
+ "github.com/tal-tech/go-zero/core/stores/sqlx"
|
|
|
+ "github.com/tal-tech/go-zero/core/stringx"
|
|
|
+ "github.com/tal-tech/go-zero/tools/goctl/model/sql/builderx"
|
|
|
+ )
|
|
|
+
|
|
|
+ var (
|
|
|
+ userFieldNames = builderx.FieldNames(&User{})
|
|
|
+ userRows = strings.Join(userFieldNames, ",")
|
|
|
+ userRowsExpectAutoSet = strings.Join(stringx.Remove(userFieldNames, "id", "create_time", "update_time"), ",")
|
|
|
+ userRowsWithPlaceHolder = strings.Join(stringx.Remove(userFieldNames, "id", "create_time", "update_time"), "=?,") + "=?"
|
|
|
+
|
|
|
+ cacheUserPrefix = "cache#User#user#"
|
|
|
+ cacheUserNamePrefix = "cache#User#name#"
|
|
|
+ cacheUserMobilePrefix = "cache#User#mobile#"
|
|
|
+ cacheUserIdPrefix = "cache#User#id#"
|
|
|
+ )
|
|
|
+
|
|
|
+ type (
|
|
|
+ UserModel interface {
|
|
|
+ Insert(data User) (sql.Result, error)
|
|
|
+ FindOne(id int64) (*User, error)
|
|
|
+ FindOneByUser(user string) (*User, error)
|
|
|
+ FindOneByName(name string) (*User, error)
|
|
|
+ FindOneByMobile(mobile string) (*User, error)
|
|
|
+ Update(data User) error
|
|
|
+ Delete(id int64) error
|
|
|
+ }
|
|
|
+
|
|
|
+ defaultUserModel struct {
|
|
|
+ sqlc.CachedConn
|
|
|
+ table string
|
|
|
+ }
|
|
|
+
|
|
|
+ User struct {
|
|
|
+ Id int64 `db:"id"`
|
|
|
+ User string `db:"user"` // 用户
|
|
|
+ Name string `db:"name"` // 用户名称
|
|
|
+ Password string `db:"password"` // 用户密码
|
|
|
+ Mobile string `db:"mobile"` // 手机号
|
|
|
+ Gender string `db:"gender"` // 男|女|未公开
|
|
|
+ Nickname string `db:"nickname"` // 用户昵称
|
|
|
+ CreateTime time.Time `db:"create_time"`
|
|
|
+ UpdateTime time.Time `db:"update_time"`
|
|
|
+ }
|
|
|
+ )
|
|
|
+
|
|
|
+ func NewUserModel(conn sqlx.SqlConn, c cache.CacheConf) UserModel {
|
|
|
+ return &defaultUserModel{
|
|
|
+ CachedConn: sqlc.NewConn(conn, c),
|
|
|
+ table: "user",
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ func (m *defaultUserModel) Insert(data User) (sql.Result, error) {
|
|
|
+ userKey := fmt.Sprintf("%s%v", cacheUserPrefix, data.User)
|
|
|
+ userNameKey := fmt.Sprintf("%s%v", cacheUserNamePrefix, data.Name)
|
|
|
+ userMobileKey := fmt.Sprintf("%s%v", cacheUserMobilePrefix, data.Mobile)
|
|
|
+ ret, err := m.Exec(func(conn sqlx.SqlConn) (result sql.Result, err error) {
|
|
|
+ query := fmt.Sprintf("insert into %s (%s) values (?, ?, ?, ?, ?, ?)", m.table, userRowsExpectAutoSet)
|
|
|
+ return conn.Exec(query, data.User, data.Name, data.Password, data.Mobile, data.Gender, data.Nickname)
|
|
|
+ }, userMobileKey, userKey, userNameKey)
|
|
|
+ return ret, err
|
|
|
+ }
|
|
|
+
|
|
|
+ func (m *defaultUserModel) FindOne(id int64) (*User, error) {
|
|
|
+ userIdKey := fmt.Sprintf("%s%v", cacheUserIdPrefix, id)
|
|
|
+ var resp User
|
|
|
+ err := m.QueryRow(&resp, userIdKey, func(conn sqlx.SqlConn, v interface{}) error {
|
|
|
+ query := fmt.Sprintf("select %s from %s where id = ? limit 1", userRows, m.table)
|
|
|
+ return conn.QueryRow(v, query, id)
|
|
|
+ })
|
|
|
+ switch err {
|
|
|
+ case nil:
|
|
|
+ return &resp, nil
|
|
|
+ case sqlc.ErrNotFound:
|
|
|
+ return nil, ErrNotFound
|
|
|
+ default:
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ func (m *defaultUserModel) FindOneByUser(user string) (*User, error) {
|
|
|
+ userKey := fmt.Sprintf("%s%v", cacheUserPrefix, user)
|
|
|
+ var resp User
|
|
|
+ err := m.QueryRowIndex(&resp, userKey, m.formatPrimary, func(conn sqlx.SqlConn, v interface{}) (i interface{}, e error) {
|
|
|
+ query := fmt.Sprintf("select %s from %s where user = ? limit 1", userRows, m.table)
|
|
|
+ if err := conn.QueryRow(&resp, query, user); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return resp.Id, nil
|
|
|
+ }, m.queryPrimary)
|
|
|
+ switch err {
|
|
|
+ case nil:
|
|
|
+ return &resp, nil
|
|
|
+ case sqlc.ErrNotFound:
|
|
|
+ return nil, ErrNotFound
|
|
|
+ default:
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ func (m *defaultUserModel) FindOneByName(name string) (*User, error) {
|
|
|
+ userNameKey := fmt.Sprintf("%s%v", cacheUserNamePrefix, name)
|
|
|
+ var resp User
|
|
|
+ err := m.QueryRowIndex(&resp, userNameKey, m.formatPrimary, func(conn sqlx.SqlConn, v interface{}) (i interface{}, e error) {
|
|
|
+ query := fmt.Sprintf("select %s from %s where name = ? limit 1", userRows, m.table)
|
|
|
+ if err := conn.QueryRow(&resp, query, name); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return resp.Id, nil
|
|
|
+ }, m.queryPrimary)
|
|
|
+ switch err {
|
|
|
+ case nil:
|
|
|
+ return &resp, nil
|
|
|
+ case sqlc.ErrNotFound:
|
|
|
+ return nil, ErrNotFound
|
|
|
+ default:
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ func (m *defaultUserModel) FindOneByMobile(mobile string) (*User, error) {
|
|
|
+ userMobileKey := fmt.Sprintf("%s%v", cacheUserMobilePrefix, mobile)
|
|
|
+ var resp User
|
|
|
+ err := m.QueryRowIndex(&resp, userMobileKey, m.formatPrimary, func(conn sqlx.SqlConn, v interface{}) (i interface{}, e error) {
|
|
|
+ query := fmt.Sprintf("select %s from %s where mobile = ? limit 1", userRows, m.table)
|
|
|
+ if err := conn.QueryRow(&resp, query, mobile); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return resp.Id, nil
|
|
|
+ }, m.queryPrimary)
|
|
|
+ switch err {
|
|
|
+ case nil:
|
|
|
+ return &resp, nil
|
|
|
+ case sqlc.ErrNotFound:
|
|
|
+ return nil, ErrNotFound
|
|
|
+ default:
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ func (m *defaultUserModel) Update(data User) error {
|
|
|
+ userIdKey := fmt.Sprintf("%s%v", cacheUserIdPrefix, data.Id)
|
|
|
+ _, err := m.Exec(func(conn sqlx.SqlConn) (result sql.Result, err error) {
|
|
|
+ query := fmt.Sprintf("update %s set %s where id = ?", m.table, userRowsWithPlaceHolder)
|
|
|
+ return conn.Exec(query, data.User, data.Name, data.Password, data.Mobile, data.Gender, data.Nickname, data.Id)
|
|
|
+ }, userIdKey)
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
+ func (m *defaultUserModel) Delete(id int64) error {
|
|
|
+ data, err := m.FindOne(id)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
+ userIdKey := fmt.Sprintf("%s%v", cacheUserIdPrefix, id)
|
|
|
+ userKey := fmt.Sprintf("%s%v", cacheUserPrefix, data.User)
|
|
|
+ userNameKey := fmt.Sprintf("%s%v", cacheUserNamePrefix, data.Name)
|
|
|
+ userMobileKey := fmt.Sprintf("%s%v", cacheUserMobilePrefix, data.Mobile)
|
|
|
+ _, err = m.Exec(func(conn sqlx.SqlConn) (result sql.Result, err error) {
|
|
|
+ query := fmt.Sprintf("delete from %s where id = ?", m.table)
|
|
|
+ return conn.Exec(query, id)
|
|
|
+ }, userIdKey, userKey, userNameKey, userMobileKey)
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
+ func (m *defaultUserModel) formatPrimary(primary interface{}) string {
|
|
|
+ return fmt.Sprintf("%s%v", cacheUserIdPrefix, primary)
|
|
|
+ }
|
|
|
+
|
|
|
+ func (m *defaultUserModel) queryPrimary(conn sqlx.SqlConn, v, primary interface{}) error {
|
|
|
+ query := fmt.Sprintf("select %s from %s where id = ? limit 1", userRows, m.table)
|
|
|
+ return conn.QueryRow(v, query, primary)
|
|
|
+ }
|
|
|
|
|
|
- import (
|
|
|
- "database/sql"
|
|
|
- "fmt"
|
|
|
- "strings"
|
|
|
- "time"
|
|
|
-
|
|
|
- "github.com/tal-tech/go-zero/core/stores/cache"
|
|
|
- "github.com/tal-tech/go-zero/core/stores/sqlc"
|
|
|
- "github.com/tal-tech/go-zero/core/stores/sqlx"
|
|
|
- "github.com/tal-tech/go-zero/core/stringx"
|
|
|
- "github.com/tal-tech/go-zero/tools/goctl/model/sql/builderx"
|
|
|
- )
|
|
|
-
|
|
|
- var (
|
|
|
- userFieldNames = builderx.FieldNames(&User{})
|
|
|
- userRows = strings.Join(userFieldNames, ",")
|
|
|
- userRowsExpectAutoSet = strings.Join(stringx.Remove(userFieldNames, "id", "create_time", "update_time"), ",")
|
|
|
- userRowsWithPlaceHolder = strings.Join(stringx.Remove(userFieldNames, "id", "create_time", "update_time"), "=?,") + "=?"
|
|
|
-
|
|
|
- cacheUserIdPrefix = "cache#User#id#"
|
|
|
- cacheUserNamePrefix = "cache#User#name#"
|
|
|
- cacheUserMobilePrefix = "cache#User#mobile#"
|
|
|
- )
|
|
|
-
|
|
|
- type (
|
|
|
- UserModel struct {
|
|
|
- sqlc.CachedConn
|
|
|
- table string
|
|
|
- }
|
|
|
-
|
|
|
- User struct {
|
|
|
- Id int64 `db:"id"`
|
|
|
- Name string `db:"name"` // 用户名称
|
|
|
- Password string `db:"password"` // 用户密码
|
|
|
- Mobile string `db:"mobile"` // 手机号
|
|
|
- Gender string `db:"gender"` // 男|女|未公开
|
|
|
- Nickname string `db:"nickname"` // 用户昵称
|
|
|
- CreateTime time.Time `db:"create_time"`
|
|
|
- UpdateTime time.Time `db:"update_time"`
|
|
|
- }
|
|
|
- )
|
|
|
-
|
|
|
- func NewUserModel(conn sqlx.SqlConn, c cache.CacheConf) *UserModel {
|
|
|
- return &UserModel{
|
|
|
- CachedConn: sqlc.NewConn(conn, c),
|
|
|
- table: "user",
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- func (m *UserModel) Insert(data User) (sql.Result, error) {
|
|
|
- userNameKey := fmt.Sprintf("%s%v", cacheUserNamePrefix, data.Name)
|
|
|
- userMobileKey := fmt.Sprintf("%s%v", cacheUserMobilePrefix, data.Mobile)
|
|
|
- ret, err := m.Exec(func(conn sqlx.SqlConn) (result sql.Result, err error) {
|
|
|
- query := fmt.Sprintf("insert into %s (%s) values (?, ?, ?, ?, ?)", m.table, userRowsExpectAutoSet)
|
|
|
- return conn.Exec(query, data.Name, data.Password, data.Mobile, data.Gender, data.Nickname)
|
|
|
- }, userNameKey, userMobileKey)
|
|
|
- return ret, err
|
|
|
- }
|
|
|
-
|
|
|
- func (m *UserModel) FindOne(id int64) (*User, error) {
|
|
|
- userIdKey := fmt.Sprintf("%s%v", cacheUserIdPrefix, id)
|
|
|
- var resp User
|
|
|
- err := m.QueryRow(&resp, userIdKey, func(conn sqlx.SqlConn, v interface{}) error {
|
|
|
- query := fmt.Sprintf("select %s from %s where id = ? limit 1", userRows, m.table)
|
|
|
- return conn.QueryRow(v, query, id)
|
|
|
- })
|
|
|
- switch err {
|
|
|
- case nil:
|
|
|
- return &resp, nil
|
|
|
- case sqlc.ErrNotFound:
|
|
|
- return nil, ErrNotFound
|
|
|
- default:
|
|
|
- return nil, err
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- func (m *UserModel) FindOneByName(name string) (*User, error) {
|
|
|
- userNameKey := fmt.Sprintf("%s%v", cacheUserNamePrefix, name)
|
|
|
- var resp User
|
|
|
- err := m.QueryRowIndex(&resp, userNameKey, m.formatPrimary, func(conn sqlx.SqlConn, v interface{}) (i interface{}, e error) {
|
|
|
- query := fmt.Sprintf("select %s from %s where name = ? limit 1", userRows, m.table)
|
|
|
- if err := conn.QueryRow(&resp, query, name); err != nil {
|
|
|
- return nil, err
|
|
|
- }
|
|
|
- return resp.Id, nil
|
|
|
- }, m.queryPrimary)
|
|
|
- switch err {
|
|
|
- case nil:
|
|
|
- return &resp, nil
|
|
|
- case sqlc.ErrNotFound:
|
|
|
- return nil, ErrNotFound
|
|
|
- default:
|
|
|
- return nil, err
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- func (m *UserModel) FindOneByMobile(mobile string) (*User, error) {
|
|
|
- userMobileKey := fmt.Sprintf("%s%v", cacheUserMobilePrefix, mobile)
|
|
|
- var resp User
|
|
|
- err := m.QueryRowIndex(&resp, userMobileKey, m.formatPrimary, func(conn sqlx.SqlConn, v interface{}) (i interface{}, e error) {
|
|
|
- query := fmt.Sprintf("select %s from %s where mobile = ? limit 1", userRows, m.table)
|
|
|
- if err := conn.QueryRow(&resp, query, mobile); err != nil {
|
|
|
- return nil, err
|
|
|
- }
|
|
|
- return resp.Id, nil
|
|
|
- }, m.queryPrimary)
|
|
|
- switch err {
|
|
|
- case nil:
|
|
|
- return &resp, nil
|
|
|
- case sqlc.ErrNotFound:
|
|
|
- return nil, ErrNotFound
|
|
|
- default:
|
|
|
- return nil, err
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- func (m *UserModel) Update(data User) error {
|
|
|
- userIdKey := fmt.Sprintf("%s%v", cacheUserIdPrefix, data.Id)
|
|
|
- _, err := m.Exec(func(conn sqlx.SqlConn) (result sql.Result, err error) {
|
|
|
- query := fmt.Sprintf("update %s set %s where id = ?", m.table, userRowsWithPlaceHolder)
|
|
|
- return conn.Exec(query, data.Name, data.Password, data.Mobile, data.Gender, data.Nickname, data.Id)
|
|
|
- }, userIdKey)
|
|
|
- return err
|
|
|
- }
|
|
|
-
|
|
|
- func (m *UserModel) Delete(id int64) error {
|
|
|
- data, err := m.FindOne(id)
|
|
|
- if err != nil {
|
|
|
- return err
|
|
|
- }
|
|
|
-
|
|
|
- userMobileKey := fmt.Sprintf("%s%v", cacheUserMobilePrefix, data.Mobile)
|
|
|
- userIdKey := fmt.Sprintf("%s%v", cacheUserIdPrefix, id)
|
|
|
- userNameKey := fmt.Sprintf("%s%v", cacheUserNamePrefix, data.Name)
|
|
|
- _, err = m.Exec(func(conn sqlx.SqlConn) (result sql.Result, err error) {
|
|
|
- query := fmt.Sprintf("delete from %s where id = ?", m.table)
|
|
|
- return conn.Exec(query, id)
|
|
|
- }, userMobileKey, userIdKey, userNameKey)
|
|
|
- return err
|
|
|
- }
|
|
|
-
|
|
|
- func (m *UserModel) formatPrimary(primary interface{}) string {
|
|
|
- return fmt.Sprintf("%s%v", cacheUserIdPrefix, primary)
|
|
|
- }
|
|
|
-
|
|
|
- func (m *UserModel) queryPrimary(conn sqlx.SqlConn, v, primary interface{}) error {
|
|
|
- query := fmt.Sprintf("select %s from %s where id = ? limit 1", userRows, m.table)
|
|
|
- return conn.QueryRow(v, query, primary)
|
|
|
- }
|
|
|
```
|
|
|
|
|
|
## 用法
|
|
@@ -211,25 +246,24 @@ OPTIONS:
|
|
|
* ddl
|
|
|
|
|
|
```shell script
|
|
|
- goctl model mysql -src={patterns} -dir={dir} -cache=true
|
|
|
+ goctl model mysql -src={patterns} -dir={dir} -cache
|
|
|
```
|
|
|
|
|
|
help
|
|
|
|
|
|
```
|
|
|
NAME:
|
|
|
- goctl model mysql ddl - generate mysql model from ddl
|
|
|
-
|
|
|
- USAGE:
|
|
|
- goctl model mysql ddl [command options] [arguments...]
|
|
|
-
|
|
|
- OPTIONS:
|
|
|
- --src value, -s value the path or path globbing patterns of the ddl
|
|
|
- --dir value, -d value the target dir
|
|
|
- --style value the file naming style, lower|camel|underline,default is lower
|
|
|
- --cache, -c generate code with cache [optional]
|
|
|
- --idea for idea plugin [optional]
|
|
|
-
|
|
|
+ goctl model mysql ddl - generate mysql model from ddl
|
|
|
+
|
|
|
+ USAGE:
|
|
|
+ goctl model mysql ddl [command options] [arguments...]
|
|
|
+
|
|
|
+ OPTIONS:
|
|
|
+ --src value, -s value the path or path globbing patterns of the ddl
|
|
|
+ --dir value, -d value the target dir
|
|
|
+ --style value the file naming format, see [https://github.com/tal-tech/go-zero/tree/master/tools/goctl/config/readme.md]
|
|
|
+ --cache, -c generate code with cache [optional]
|
|
|
+ --idea for idea plugin [optional]
|
|
|
```
|
|
|
|
|
|
* datasource
|
|
@@ -242,18 +276,19 @@ OPTIONS:
|
|
|
|
|
|
```
|
|
|
NAME:
|
|
|
- goctl model mysql datasource - generate model from datasource
|
|
|
+ goctl model mysql datasource - generate model from datasource
|
|
|
+
|
|
|
+ USAGE:
|
|
|
+ goctl model mysql datasource [command options] [arguments...]
|
|
|
+
|
|
|
+ OPTIONS:
|
|
|
+ --url value the data source of database,like "root:password@tcp(127.0.0.1:3306)/database
|
|
|
+ --table value, -t value the table or table globbing patterns in the database
|
|
|
+ --cache, -c generate code with cache [optional]
|
|
|
+ --dir value, -d value the target dir
|
|
|
+ --style value the file naming format, see [https://github.com/tal-tech/go-zero/tree/master/tools/goctl/config/readme.md]
|
|
|
+ --idea for idea plugin [optional]
|
|
|
|
|
|
- USAGE:
|
|
|
- goctl model mysql datasource [command options] [arguments...]
|
|
|
-
|
|
|
- OPTIONS:
|
|
|
- --url value the data source of database,like "root:password@tcp(127.0.0.1:3306)/database
|
|
|
- --table value, -t value the table or table globbing patterns in the database
|
|
|
- --cache, -c generate code with cache [optional]
|
|
|
- --dir value, -d value the target dir
|
|
|
- --style value the file naming style, lower|camel|snake, default is lower
|
|
|
- --idea for idea plugin [optional]
|
|
|
|
|
|
```
|
|
|
|
|
@@ -281,13 +316,13 @@ OPTIONS:
|
|
|
* ddl
|
|
|
|
|
|
```shell script
|
|
|
- goctl model -src={patterns} -dir={dir} -cache=false
|
|
|
+ goctl model -src={patterns} -dir={dir}
|
|
|
```
|
|
|
|
|
|
* datasource
|
|
|
|
|
|
```shell script
|
|
|
- goctl model mysql datasource -url={datasource} -table={patterns} -dir={dir} -cache=false
|
|
|
+ goctl model mysql datasource -url={datasource} -table={patterns} -dir={dir}
|
|
|
```
|
|
|
|
|
|
生成代码仅基本的CURD结构。
|