• 使用gen 结合gorm 生成表模型文件


    # 创建一个目录 用于执行 自动生成model 的代码 和存储 生成的model文件
    mkdir gengormmodel && cd gengormmodel
    go mod init gengormmodel
    go get -u gorm.io/gen@v0.3.16
    #最终的目录结构
    
    • 1
    • 2
    • 3
    • 4
    • 5

    在这里插入图片描述

    package main
    
    import (
    	"fmt"
    	"gorm.io/driver/mysql"
    	"gorm.io/gen"
    	"gorm.io/gorm"
    	"strings"
    )
    
    const MysqlConfig = "root:root@(localhost:3306)/db_51miz?charset=utf8mb4&parseTime=True&loc=Local"
    
    func main() {
    	// 连接数据库
    	db, err := gorm.Open(mysql.Open(MysqlConfig))
    	if err != nil {
    		panic(fmt.Errorf("cannot establish db connection: %w", err))
    	}
    
    	// 生成实例
    	g := gen.NewGenerator(gen.Config{
    		// 相对执行`go run`时的路径, 会自动创建目录
    		OutPath: "./query",
    
    		// WithDefaultQuery 生成默认查询结构体(作为全局变量使用), 即`Q`结构体和其字段(各表模型)
    		// WithoutContext 生成没有context调用限制的代码供查询
    		// WithQueryInterface 生成interface形式的查询代码(可导出), 如`Where()`方法返回的就是一个可导出的接口类型
    		Mode: gen.WithDefaultQuery | gen.WithQueryInterface,
    
    		// 表字段可为 null 值时, 对应结体字段使用指针类型
    		FieldNullable: true, // generate pointer when field is nullable
    
    		// 表字段默认值与模型结构体字段零值不一致的字段, 在插入数据时需要赋值该字段值为零值的, 结构体字段须是指针类型才能成功, 即`FieldCoverable:true`配置下生成的结构体字段.
    		// 因为在插入时遇到字段为零值的会被GORM赋予默认值. 如字段`age`表默认值为10, 即使你显式设置为0最后也会被GORM设为10提交.
    		// 如果该字段没有上面提到的插入时赋零值的特殊需要, 则字段为非指针类型使用起来会比较方便.
    		FieldCoverable: false, // generate pointer when field has default value, to fix problem zero value cannot be assign: https://gorm.io/docs/create.html#Default-Values
    
    		// 模型结构体字段的数字类型的符号表示是否与表字段的一致, `false`指示都用有符号类型
    		FieldSignable: false, // detect integer field's unsigned type, adjust generated data type
    		// 生成 gorm 标签的字段索引属性
    		FieldWithIndexTag: false, // generate with gorm index tag
    		// 生成 gorm 标签的字段类型属性
    		FieldWithTypeTag: true, // generate with gorm column type tag
    	})
    	// 设置目标 db
    	g.UseDB(db)
    
    	// 自定义字段的数据类型
    	// 统一数字类型为int64,兼容protobuf
    	dataMap := map[string]func(detailType string) (dataType string){
    		"tinyint":   func(detailType string) (dataType string) { return "int64" },
    		"smallint":  func(detailType string) (dataType string) { return "int64" },
    		"mediumint": func(detailType string) (dataType string) { return "int64" },
    		"bigint":    func(detailType string) (dataType string) { return "int64" },
    		"int":       func(detailType string) (dataType string) { return "int64" },
    	}
    	// 要先于`ApplyBasic`执行
    	g.WithDataTypeMap(dataMap)
    
    	// 自定义模型结体字段的标签
    	// 将特定字段名的 json 标签加上`string`属性,即 MarshalJSON 时该字段由数字类型转成字符串类型
    	jsonField := gen.FieldJSONTagWithNS(func(columnName string) (tagContent string) {
    		toStringField := `balance, `
    		if strings.Contains(toStringField, columnName) {
    			return columnName + ",string"
    		}
    		return columnName
    	})
    	// 将非默认字段名的字段定义为自动时间戳和软删除字段;
    	// 自动时间戳默认字段名为:`updated_at``created_at, 表字段数据类型为: INT 或 DATETIME
    	// 软删除默认字段名为:`deleted_at`, 表字段数据类型为: DATETIME
    	autoUpdateTimeField := gen.FieldGORMTag("update_time", "column:update_time;type:int unsigned;autoUpdateTime")
    	autoCreateTimeField := gen.FieldGORMTag("create_time", "column:create_time;type:int unsigned;autoCreateTime")
    	softDeleteField := gen.FieldType("delete_time", "soft_delete.DeletedAt")
    	// 模型自定义选项组
    	fieldOpts := []gen.ModelOpt{jsonField, autoCreateTimeField, autoUpdateTimeField, softDeleteField}
    
    	// 创建模型的结构体,生成文件在 model 目录; 先创建的结果会被后面创建的覆盖
    	// 这里创建个别模型仅仅是为了拿到`*generate.QueryStructMeta`类型对象用于后面的模型关联操作中
    	User := g.GenerateModel("miz_out_company") //这个是表名,切记表名不能以数字开头,都则报错
    	// 创建全部模型文件, 并覆盖前面创建的同名模型
    	allModel := g.GenerateAllTable(fieldOpts...)
    
    	// 创建有关联关系的模型文件
    	// 可以用于指定外键
    	//Score := g.GenerateModel("score",
    	//	append(
    	//		fieldOpts,
    	//		// user 一对多 address 关联, 外键`uid`在 address 表中
    	//		gen.FieldRelate(field.HasMany, "user", User, &field.RelateConfig{GORMTag: "foreignKey:UID"}),
    	//	)...,
    	//)
    
    	// 创建模型的方法,生成文件在 query 目录; 先创建结果不会被后创建的覆盖
    	g.ApplyBasic(User)
    	g.ApplyBasic(allModel...)
    
    	g.Execute()
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    #然后再 执行 
    go mod tidy
    # 然后执行 
    go run main.go
    
    • 1
    • 2
    • 3
    • 4
  • 相关阅读:
    【List篇】ArrayList 的线程不安全介绍
    openvino多输入多输出动态尺寸样例记录
    CRUD-SQL
    mapbox尝鲜值之云图动画
    springboot mongodb 数据添加时更改‘_class‘字段
    Vue3 + Nodejs 实战 ,文件上传项目--实现文件批量上传(显示实时上传进度)
    OkHttp原理分析总结
    RK3568系列教程手册上新!《iTOP-3568开发板文件系统构建手册》
    计算机网络自学笔记004_Real(数据链路层002)
    Day84:服务攻防-端口协议&桌面应用&QQ&WPS等RCE&hydra口令猜解&未授权检测
  • 原文地址:https://blog.csdn.net/weixin_38385580/article/details/133996820