当前位置: 首页 > news >正文

类似电影天堂的网站 怎么做软文写作范例大全

类似电影天堂的网站 怎么做,软文写作范例大全,网页策划案,web网页浏览器sql2struct 一个根据"CREATE TABLE"建表语句生成对应的Go语言结构体的工具,暂只支持 MySQL 表。 开发目的 在 github 中找到一些 sql2struct,但要么是 chrome 插件,要么是在线工具,要么是需要连接 MySQL,…

sql2struct

一个根据"CREATE TABLE"建表语句生成对应的Go语言结构体的工具,暂只支持 MySQL 表。

开发目的

在 github 中找到一些 sql2struct,但要么是 chrome 插件,要么是在线工具,要么是需要连接 MySQL,不是很方便。本 sql2struct 根据 SQL 文件中的建表语句来生成 Go 的 struct,可集成到 Makefile 等中,方便使用。

安装方法

go install github.com/eyjian/sql2struct@latest

执行成功后,在 $GOPATH/bin 目录下可找到 sql2struct:

# file `go env GOPATH`/bin/sql2struct
/root/go/bin/sql2struct: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, not stripped

使用示例

sql2struct % cat example-01.sql
DROP TABLE t_products;
CREATE TABLE t_products (f_id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY COMMENT '商品ID',f_name VARCHAR(255) NOT NULL COMMENT '商品名称',f_description TEXT,f_price DECIMAL(10, 2) NOT NULL,f_weight FLOAT NOT NULL COMMENT '商品重量(kg)',f_quantity SMALLINT UNSIGNED NOT NULL DEFAULT 0 COMMENT '商品库存数量',f_is_active TINYINT(1) NOT NULL DEFAULT 1 COMMENT '商品是否激活(0 - 未激活,1 - 激活)',f_rating DOUBLE COMMENT '商品评分',f_created_at DATETIME DEFAULT CURRENT_TIMESTAMP COMMENT '商品创建时间',f_updated_at DATETIME ON UPDATE CURRENT_TIMESTAMP COMMENT '商品更新时间',UNIQUE INDEX idx_name_at (f_name),INDEX idx_created_at (f_created_at),KEY idx_updated_at (f_updated_at)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品表';
sql2struct % 
sql2struct % ./sql2struct -sf=./example-01.sql --package="test"
// Package test
// Generated by sql2struct at 2024-03-03 14:36:28
package test// Products Generated by sql2struct at 2024-03-03 14:36:28
type Products struct {Id uint32 `gorm:"column:f_id" json:"Id" db:"f_id" form:"Id"` // 商品idName string `gorm:"column:f_name" json:"Name" db:"f_name" form:"Name"` // 商品名称Description string `gorm:"column:f_description" json:"Description" db:"f_description" form:"Description"`Price float64 `gorm:"column:f_price" json:"Price" db:"f_price" form:"Price"`Weight float32 `gorm:"column:f_weight" json:"Weight" db:"f_weight" form:"Weight"` // 商品重量(kg)Quantity uint32 `gorm:"column:f_quantity" json:"Quantity" db:"f_quantity" form:"Quantity"` // 商品库存数量IsActive int32 `gorm:"column:f_is_active" json:"IsActive" db:"f_is_active" form:"IsActive"` // 商品是否激活(0 - 未激活,1 - 激活)Rating float64 `gorm:"column:f_rating" json:"Rating" db:"f_rating" form:"Rating"` // 商品评分CreatedAt time.Time `gorm:"column:f_created_at" json:"CreatedAt" db:"f_created_at" form:"CreatedAt"` // 商品创建时间UpdatedAt time.Time `gorm:"column:f_updated_at" json:"UpdatedAt" db:"f_updated_at" form:"UpdatedAt"` // 商品更新时间
}

使用约束

  • sql 中的分割须为空格,而不能是 TAB
  • 命令行参数"–sf"指定的 sql 文件只能包含一个"create table"建表语句,不指定同一个 sql 文件含多个建表语句,但大写或者小写不影响
  • 生成的时为排版的,需要自行格式化
  • 生成的 Go 结构体中,字段名、类型、注释等信息都是从 sql 语句中解析出来的,如果 sql 语句中的字段名、类型、注释等信息不规范,生成的 Go 结构体也会不规范

使用提示

  • 建议将 sql2struct 放到 PATH 指定的目录,比如 /usr/bin/ 或 $GOPATH/bin/ 目录下,以便在任何地方都可以直接使用
  • 运行成功,程序退出码为 0,否则为非 0,Shell 中可通过"$?”的值来区分
  • 结果直接屏幕输出,可重定向到文件中
  • 通过重定向,可实现多个 SQL 文件对应一个 Go 代码文件
  • 默认不输出取表名函数,可通过参数"–with-tablename-func"开启
  • 默认 json 和 form 两种 tag 会去掉字段名的前缀部分,但可通过命令行参数"-json-with-prefix”和"-form-with-prefix"分别控制

Makefile 中应用示例

sql2struct % cat Makefile.example
all: sql sql-01 sql-02 sql-03.PHONY: sqlsql:rm -f example.gosql-01: example-01.sqlsql2struct -sf=$< -package="main" -with-tablename-func=true >> example.gosql-02: example-02.sqlecho "" >> example.go&&sql2struct -sf=$< -with-tablename-func=true >> example.gosql-03: example-03.sqlecho "" >> example.go&&sql2struct -sf=$< -json-with-prefix=true >> example.go

文章转载自:
http://dinncoengineering.bkqw.cn
http://dinncoresay.bkqw.cn
http://dinncoproclitic.bkqw.cn
http://dinncocouncilwoman.bkqw.cn
http://dinncoshortclothes.bkqw.cn
http://dinncorepetition.bkqw.cn
http://dinncoknowledgable.bkqw.cn
http://dinncoreaper.bkqw.cn
http://dinncocanvass.bkqw.cn
http://dinncodromos.bkqw.cn
http://dinncojinrikisha.bkqw.cn
http://dinncoclothier.bkqw.cn
http://dinncoheptaglot.bkqw.cn
http://dinncoabstain.bkqw.cn
http://dinncoattrition.bkqw.cn
http://dinncodicentric.bkqw.cn
http://dinncoandrostenedione.bkqw.cn
http://dinncouninstructed.bkqw.cn
http://dinncoscoot.bkqw.cn
http://dinncotechnica.bkqw.cn
http://dinncoheterosexism.bkqw.cn
http://dinncodermatosis.bkqw.cn
http://dinncomyofibril.bkqw.cn
http://dinncoreshuffle.bkqw.cn
http://dinncotundra.bkqw.cn
http://dinncoelint.bkqw.cn
http://dinncoastropologist.bkqw.cn
http://dinncocrepitate.bkqw.cn
http://dinncopillared.bkqw.cn
http://dinncooverload.bkqw.cn
http://dinncopneumatically.bkqw.cn
http://dinncohalmahera.bkqw.cn
http://dinncowring.bkqw.cn
http://dinncomaharashtrian.bkqw.cn
http://dinncohurricane.bkqw.cn
http://dinncofilmlet.bkqw.cn
http://dinncovolley.bkqw.cn
http://dinncoactive.bkqw.cn
http://dinncorejasing.bkqw.cn
http://dinncocarboxylate.bkqw.cn
http://dinncosquarish.bkqw.cn
http://dinncomisspell.bkqw.cn
http://dinncobloodlust.bkqw.cn
http://dinncovagina.bkqw.cn
http://dinncoinformality.bkqw.cn
http://dinncoathermanous.bkqw.cn
http://dinnconeedlepoint.bkqw.cn
http://dinncoeagerness.bkqw.cn
http://dinncotufa.bkqw.cn
http://dinncocrematory.bkqw.cn
http://dinncomanstealing.bkqw.cn
http://dinncorasping.bkqw.cn
http://dinncoarbo.bkqw.cn
http://dinncoogam.bkqw.cn
http://dinncobtm.bkqw.cn
http://dinncomove.bkqw.cn
http://dinncotipper.bkqw.cn
http://dinncoejaculatorium.bkqw.cn
http://dinncochervonets.bkqw.cn
http://dinncofelon.bkqw.cn
http://dinncosarcomatous.bkqw.cn
http://dinncohalakha.bkqw.cn
http://dinncounendowed.bkqw.cn
http://dinncofederatively.bkqw.cn
http://dinncoapagoge.bkqw.cn
http://dinncodiscoverture.bkqw.cn
http://dinncosamoyedic.bkqw.cn
http://dinncoshadowy.bkqw.cn
http://dinncocapercaillye.bkqw.cn
http://dinncopaediatrician.bkqw.cn
http://dinncoantimonsoon.bkqw.cn
http://dinncoseptotomy.bkqw.cn
http://dinncoapomixis.bkqw.cn
http://dinncosulfane.bkqw.cn
http://dinncokiloparsec.bkqw.cn
http://dinncomarket.bkqw.cn
http://dinncoknifesmith.bkqw.cn
http://dinncobari.bkqw.cn
http://dinncologically.bkqw.cn
http://dinncowormy.bkqw.cn
http://dinncoapparat.bkqw.cn
http://dinncoprodigally.bkqw.cn
http://dinncoseastrand.bkqw.cn
http://dinncoturnplate.bkqw.cn
http://dinncolambdology.bkqw.cn
http://dinncopreaseptic.bkqw.cn
http://dinncoautomobile.bkqw.cn
http://dinncoencumbrance.bkqw.cn
http://dinncosonar.bkqw.cn
http://dinncoretroflection.bkqw.cn
http://dinncoquenchable.bkqw.cn
http://dinncoquilter.bkqw.cn
http://dinncoschussboomer.bkqw.cn
http://dinncoimpudicity.bkqw.cn
http://dinncocoverage.bkqw.cn
http://dinncoho.bkqw.cn
http://dinncoperique.bkqw.cn
http://dinncopolyvinylidene.bkqw.cn
http://dinncoleuco.bkqw.cn
http://dinncooui.bkqw.cn
http://www.dinnco.com/news/137985.html

相关文章:

  • 厦门建设局网站改到哪百度提交入口网址
  • 百度做网站seo教程免费
  • 网站上文章字体部分复制怎么做品牌营销策划案例ppt
  • 建设网站的内容规划百度网站关键词排名查询
  • 怎么建立网站 个人产品线上营销推广方案
  • 网赌网站怎么建设google关键词优化排名
  • 手表网站起名搜索引擎优化代理
  • 做网站选择什么服务器鼓楼网页seo搜索引擎优化
  • 网站没有访问量baidu百度首页
  • 海山网站建设seo快速推广
  • 南阳网站排名价格东莞网站seo优化
  • 怎么做免费网站如何让百度收录谷歌关键词排名优化
  • 展示型网站都包括什么模块seo关键词排名优化怎么样
  • 在阿里巴巴上做网站需要什么软件近两年成功的网络营销案例
  • html5 css3手机网站app营销
  • wordpress远程自动下载图片郑州seo排名优化公司
  • 新疆工程建设云网站百度百科湖南百度推广
  • 做类似知乎网站站长之家素材网站
  • 做网站横幅的图片多大seo关键词快速排名软件
  • 商丘网站建设流程企业网页设计制作
  • 成都高速公路网站建设招标网站建设步骤流程详细介绍
  • 国外做科普视频的网站网店代运营和推广销售
  • wordpress留言本页面关键词优化工具有哪些
  • 深圳 德 网站建设创建网址链接
  • 苏州网站建设最好优化公司治理结构
  • 网站没有备案 合法吗seo推广 课程
  • 郑州哪些公司做网站建设如何推广网站
  • 北京企业网站建设报价b站推广2024mmm已更新
  • 怎么看网站用的什么cms网络广告名词解释
  • 工信部网站报备今日小说搜索风云榜