🎨 清理多余文件,修改项目model

This commit is contained in:
2026-04-10 15:38:58 +08:00
parent 6a80fcc388
commit f106960342
221 changed files with 686 additions and 2801 deletions

View File

@@ -1,7 +1,7 @@
package ast
import (
"github.com/flipped-aurora/gin-vue-admin/server/global"
"git.echol.cn/loser/Go-Web-Template/server/global"
"path/filepath"
"testing"
)
@@ -25,7 +25,7 @@ func TestPackageEnter_Rollback(t *testing.T) {
fields: fields{
Type: TypePackageApiEnter,
Path: filepath.Join(global.GVA_CONFIG.AutoCode.Root, global.GVA_CONFIG.AutoCode.Server, "api", "v1", "enter.go"),
ImportPath: `"github.com/flipped-aurora/gin-vue-admin/server/api/v1/example"`,
ImportPath: `"git.echol.cn/loser/Go-Web-Template/server/api/v1/example"`,
StructName: "ExampleApiGroup",
PackageName: "example",
PackageStructName: "ApiGroup",
@@ -37,7 +37,7 @@ func TestPackageEnter_Rollback(t *testing.T) {
fields: fields{
Type: TypePackageRouterEnter,
Path: filepath.Join(global.GVA_CONFIG.AutoCode.Root, global.GVA_CONFIG.AutoCode.Server, "router", "enter.go"),
ImportPath: `"github.com/flipped-aurora/gin-vue-admin/server/router/example"`,
ImportPath: `"git.echol.cn/loser/Go-Web-Template/server/router/example"`,
StructName: "Example",
PackageName: "example",
PackageStructName: "RouterGroup",
@@ -49,7 +49,7 @@ func TestPackageEnter_Rollback(t *testing.T) {
fields: fields{
Type: TypePackageServiceEnter,
Path: filepath.Join(global.GVA_CONFIG.AutoCode.Root, global.GVA_CONFIG.AutoCode.Server, "service", "enter.go"),
ImportPath: `"github.com/flipped-aurora/gin-vue-admin/server/service/example"`,
ImportPath: `"git.echol.cn/loser/Go-Web-Template/server/service/example"`,
StructName: "ExampleServiceGroup",
PackageName: "example",
PackageStructName: "ServiceGroup",
@@ -99,7 +99,7 @@ func TestPackageEnter_Injection(t *testing.T) {
fields: fields{
Type: TypePackageApiEnter,
Path: filepath.Join(global.GVA_CONFIG.AutoCode.Root, global.GVA_CONFIG.AutoCode.Server, "api", "v1", "enter.go"),
ImportPath: `"github.com/flipped-aurora/gin-vue-admin/server/api/v1/example"`,
ImportPath: `"git.echol.cn/loser/Go-Web-Template/server/api/v1/example"`,
StructName: "ExampleApiGroup",
PackageName: "example",
PackageStructName: "ApiGroup",
@@ -110,7 +110,7 @@ func TestPackageEnter_Injection(t *testing.T) {
fields: fields{
Type: TypePackageRouterEnter,
Path: filepath.Join(global.GVA_CONFIG.AutoCode.Root, global.GVA_CONFIG.AutoCode.Server, "router", "enter.go"),
ImportPath: `"github.com/flipped-aurora/gin-vue-admin/server/router/example"`,
ImportPath: `"git.echol.cn/loser/Go-Web-Template/server/router/example"`,
StructName: "Example",
PackageName: "example",
PackageStructName: "RouterGroup",
@@ -122,7 +122,7 @@ func TestPackageEnter_Injection(t *testing.T) {
fields: fields{
Type: TypePackageServiceEnter,
Path: filepath.Join(global.GVA_CONFIG.AutoCode.Root, global.GVA_CONFIG.AutoCode.Server, "service", "enter.go"),
ImportPath: `"github.com/flipped-aurora/gin-vue-admin/server/service/example"`,
ImportPath: `"git.echol.cn/loser/Go-Web-Template/server/service/example"`,
StructName: "ExampleServiceGroup",
PackageName: "example",
PackageStructName: "ServiceGroup",