知是行的主意,行是知的功夫。这篇文章主要讲述我给 ”Go 语言“ 开发了 6 个在线工具相关的知识,希望能为你提供帮助。
工具快速访问
- JSON 转 GO:
- YAML 转 GO:
- SQL 转 go-zero Model:
- SQL 转 GORM Model:
- SQL 转 ElasticSearch DSL: https://printlove.cn/tools/sql2es/
- SQL 转 entgo schema:
1. 有两种模式
- 转化-展开:json中的所有对象都创建为新的struct
- 转化-嵌套:json中的对象都包含到一个struct中
默认转化后的?
?tag?
?是??json?
?,也可以自定义,比如可以改为:gorm3. 效果图
YAML转GO网址:将 yaml 格式自动转化为 Go Struct 结构。
效果图
SQL 转 ent【我给 ”Go 语言“ 开发了 6 个在线工具】网址:https://printlove.cn/tools/sql2ent
1. 效果图
2. 功能
- 此工具提供将 SQL 语句转化为 ?
?ent schema?
? - 提供常见的数据库类型到 field 函数的转化
1. 效果图
2. 当前支持
- sql and expression
- sql or expression
- equal(=) support
- not equal(!=) support
- gt(> ) support
- gte(> =) support
- lt(< ) support
- lte(< =) support
- sql in (eg. id in (1,2,3) ) expression
- sql not in (eg. id not in (1,2,3) ) expression
- paren bool support (eg. where (a=1 or b=1) and (c=1 or d=1))
- sql like expression (currently use match phrase, perhaps will change to wildcard in the future)
- sql order by support
- sql limit support
- sql not like expression
- field missing check
- support aggregation like count(\\*), count(field), min(field), max(field), avg(field)
- support aggregation like stats(field), extended_stats(field), percentiles(field) which are not standard sql function
- null check expression(is null/is not null)
- join expression
- having support
1. 效果图
2. 功能
和官方的 goctl 工具生成的代码是一样的,同样支持是否带缓存的Model。
SQL转GORM Model网址:https://www.printlove.cn/tools/sql2gorm
1. 效果图
2. 功能
- 支持多表
- 支持引入包的导入
推荐阅读
- 代码审计开源工具推荐
- Linux的DHCP服务配置及FTP服务配置
- C语言编程基础
- C语言算法
- #yyds干货盘点#Redis源码分析专题从本质分析你写入Redis中的数据为什么不见了()
- 详解预训练模型在信息检索第一阶段的应用
- #yyds干货盘点#Bitmaps
- #yyds干货盘点#网络协议之:一定要大写的SOCKS
- 传输文件协议FTP