update package reference

This commit is contained in:
kevin
2020-08-08 16:40:10 +08:00
parent d19d25c72f
commit 0a7e0cce77
377 changed files with 881 additions and 1423 deletions

View File

@@ -3,7 +3,7 @@ package gen
import (
"strings"
"zero/tools/goctl/model/mongomodel/utils"
"github.com/tal-tech/go-zero/tools/goctl/model/mongomodel/utils"
)
func genMethodTemplate(funcDesc FunctionDesc, needCache bool) (template string) {

View File

@@ -5,9 +5,9 @@ import (
"strings"
"text/template"
"zero/tools/goctl/api/spec"
"zero/tools/goctl/api/util"
"zero/tools/goctl/model/mongomodel/utils"
"github.com/tal-tech/go-zero/tools/goctl/api/spec"
"github.com/tal-tech/go-zero/tools/goctl/api/util"
"github.com/tal-tech/go-zero/tools/goctl/model/mongomodel/utils"
)
const (
@@ -149,8 +149,8 @@ func getImports(imports []string, needCache bool) string {
importStr := strings.Join(imports, "\n\t")
importStr += "\"errors\"\n\t"
importStr += "\"time\"\n\t"
importStr += "\n\t\"zero/core/stores/cache\"\n\t"
importStr += "\"zero/core/stores/mongoc\"\n\t"
importStr += "\n\t\"github.com/tal-tech/go-zero/core/stores/cache\"\n\t"
importStr += "\"github.com/tal-tech/go-zero/core/stores/mongoc\"\n\t"
importStr += "\n\t\"github.com/globalsign/mgo/bson\""
return importStr
}

View File

@@ -7,7 +7,7 @@ import (
"strings"
"text/template"
"zero/tools/goctl/model/mongomodel/utils"
"github.com/tal-tech/go-zero/tools/goctl/model/mongomodel/utils"
)
func GenMongoModelByNetwork(input string, needCache bool) (string, error) {

View File

@@ -2,7 +2,7 @@ package gen
const (
quotationMark = "`"
//templates that do not use caching
// templates that do not use caching
noCacheTemplate = `package model
import (

View File

@@ -4,10 +4,9 @@ import (
"errors"
"fmt"
"zero/core/lang"
"zero/tools/goctl/model/mongomodel/gen"
"github.com/logrusorgru/aurora"
"github.com/tal-tech/go-zero/core/lang"
"github.com/tal-tech/go-zero/tools/goctl/model/mongomodel/gen"
"github.com/urfave/cli"
)

View File

@@ -8,7 +8,7 @@ import (
"io/ioutil"
"strings"
"zero/tools/goctl/api/spec"
"github.com/tal-tech/go-zero/tools/goctl/api/spec"
)
const (

View File

@@ -45,9 +45,9 @@ imports代码生成对应model中包的引入管理仅使用于晓黑板项
"strings"
"time"
"zero/core/stores/sqlc"
"zero/core/stores/sqlx"
"zero/core/stringx"
"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"
"xiao/service/shared/builderx"
)
```
@@ -60,8 +60,8 @@ imports代码生成对应model中包的引入管理仅使用于晓黑板项
"strings"
"time"
"zero/core/stores/sqlx"
"zero/core/stringx"
"github.com/tal-tech/go-zero/core/stores/sqlx"
"github.com/tal-tech/go-zero/core/stringx"
"xiao/service/shared/builderx"
)
```

View File

@@ -6,7 +6,7 @@ import (
"sort"
"strings"
"zero/tools/goctl/model/sql/util"
"github.com/tal-tech/go-zero/tools/goctl/model/sql/util"
)
func TableConvert(outerTable OuterTable) (*InnerTable, error) {

View File

@@ -5,7 +5,7 @@ import (
"strings"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genDelete(table *InnerTable) (string, error) {

View File

@@ -5,7 +5,7 @@ import (
"strings"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genFields(fields []*InnerField) (string, error) {

View File

@@ -5,7 +5,7 @@ import (
"strings"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genFindAllByField(table *InnerTable) (string, error) {

View File

@@ -5,7 +5,7 @@ import (
"strings"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genFindLimitByField(table *InnerTable) (string, error) {

View File

@@ -4,7 +4,7 @@ import (
"bytes"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genFindOne(table *InnerTable) (string, error) {

View File

@@ -5,7 +5,7 @@ import (
"strings"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genFineOneByField(table *InnerTable) (string, error) {

View File

@@ -4,7 +4,7 @@ import (
"bytes"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genImports(table *InnerTable) (string, error) {

View File

@@ -5,7 +5,7 @@ import (
"strings"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genInsert(table *InnerTable) (string, error) {

View File

@@ -4,7 +4,7 @@ import (
"log"
"testing"
"zero/core/logx"
"github.com/tal-tech/go-zero/core/logx"
)
func TestKeys(t *testing.T) {

View File

@@ -6,8 +6,8 @@ import (
"strings"
"text/template"
"zero/core/logx"
sqltemplate "zero/tools/goctl/model/sql/template"
"github.com/tal-tech/go-zero/core/logx"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func GenModel(table *InnerTable) (string, error) {

View File

@@ -4,7 +4,7 @@ import (
"bytes"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genNew(table *InnerTable) (string, error) {

View File

@@ -4,7 +4,7 @@ import (
"bytes"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genTag(in string) (string, error) {

View File

@@ -4,7 +4,7 @@ import (
"bytes"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genTypes(table *InnerTable) (string, error) {

View File

@@ -5,7 +5,7 @@ import (
"strings"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genUpdate(table *InnerTable) (string, error) {

View File

@@ -5,7 +5,7 @@ import (
"strings"
"text/template"
sqltemplate "zero/tools/goctl/model/sql/template"
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
)
func genVars(table *InnerTable) (string, error) {

View File

@@ -3,7 +3,7 @@ package sqlgen
import (
"errors"
"zero/tools/goctl/model/sql/gen"
"github.com/tal-tech/go-zero/tools/goctl/model/sql/gen"
)
var (

View File

@@ -2,7 +2,7 @@ package sqltemplate
var Error = `package model
import "zero/core/stores/sqlx"
import "github.com/tal-tech/go-zero/core/stores/sqlx"
var (
ErrNotFound = sqlx.ErrNotFound

View File

@@ -7,9 +7,9 @@ import (
"strings"
"time"
"zero/core/stores/cache"
"zero/core/stores/sqlc"
"zero/core/stores/sqlx"
"zero/core/stringx"
"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"
)
`

View File

@@ -3,7 +3,7 @@ package sqlmodel
import (
"go/format"
"zero/core/logx"
"github.com/tal-tech/go-zero/core/logx"
)
type (

View File

@@ -9,9 +9,9 @@ import (
"strings"
"text/template"
"zero/core/stringx"
"zero/tools/goctl/api/spec"
"zero/tools/goctl/util"
"github.com/tal-tech/go-zero/core/stringx"
"github.com/tal-tech/go-zero/tools/goctl/api/spec"
"github.com/tal-tech/go-zero/tools/goctl/util"
)
var (

View File

@@ -6,7 +6,7 @@ import (
"strings"
"text/template"
"zero/core/stringx"
"github.com/tal-tech/go-zero/core/stringx"
)
var insertTemplate = `

View File

@@ -7,7 +7,7 @@ import (
"strings"
"text/template"
util2 "zero/tools/modelctl/util"
util2 "github.com/tal-tech/go-zero/tools/modelctl/util"
)
var (

View File

@@ -6,7 +6,7 @@ import (
"strings"
"text/template"
"zero/core/stringx"
"github.com/tal-tech/go-zero/core/stringx"
)
var updateTemplate = `