Some checks failed
Build docker and publish / linux (1.24.5) (push) Failing after 40s
feat(pay): 添加支付API基础结构 feat(miniapp): 创建支付测试小程序页面与配置 feat(wechatpay): 配置微信支付参数与证书 fix(guild): 修复成员列表查询条件 docs: 更新代码规范文档与需求文档 style: 统一前后端枚举显示与注释格式 refactor(admin): 重构用户奖励发放接口参数处理 test(title): 添加称号效果参数验证测试
42 lines
2.0 KiB
Markdown
42 lines
2.0 KiB
Markdown
## 自动生成数据库模型和常见的 CRUD 操作
|
|
|
|
### Usage
|
|
|
|
```shell
|
|
go run cmd/gormgen/main.go -h
|
|
|
|
Usage of ./cmd/gormgen/main.go:
|
|
-dsn string
|
|
consult[https://gorm.io/docs/connecting_to_the_database.html]
|
|
-tables string
|
|
enter the required data table or leave it blank
|
|
```
|
|
|
|
#### -dsn
|
|
|
|
用于连接数据库的DSN reference: https://gorm.io/docs/connecting_to_the_database.html
|
|
|
|
#### -tables
|
|
|
|
指定要生成的表名称,默认所有表。
|
|
|
|
eg :
|
|
|
|
```shell
|
|
--tables="orders" # generate from `orders`
|
|
|
|
--tables="orders,users" # generate from `orders` and `users`
|
|
|
|
--tables="" # generate from all tables
|
|
```
|
|
|
|
## 示例
|
|
|
|
```shell
|
|
# 根目录下执行
|
|
go run cmd/gormgen/main.go -dsn "root:api2api..@tcp(sh-cynosdbmysql-grp-88th45wy.sql.tencentcdb.com:28555)/bindbox_game?charset=utf8mb4&parseTime=True&loc=Local" -tables "admin,log_operation,log_request,activities,activity_categories,activity_draw_logs,activity_issues,activity_reward_settings,guild,guild_boxes,guild_contribute_logs,guild_members,system_coupons,user_coupons,user_inventory,user_inventory_transfers,user_points,user_points_ledger"
|
|
|
|
go run cmd/gormgen/main.go -dsn "root:api2api..@tcp(sh-cynosdbmysql-grp-88th45wy.sql.tencentcdb.com:28555)/bindbox_game?charset=utf8mb4&parseTime=True&loc=Local" -tables "admin,log_operation,log_request,activities,activity_categories,activity_draw_logs,activity_issues,activity_reward_settings,guild,guild_boxes,guild_contribute_logs,guild_members,system_coupons,user_coupons,user_inventory,user_inventory_transfers,user_points,user_points_ledger,users,user_addresses,menu_actions,menus,role_actions,role_menus,role_users,roles,order_items,orders,products,shipping_records,product_categories,user_invites,system_item_cards,user_item_cards,activity_draw_effects,banner,issue_random_commitments,activity_draw_receipts,system_titles,system_title_effects,user_titles,user_title_effect_claims,payment_preorders,payment_transactions,payment_refunds,payment_notify_events,payment_bills,payment_bill_diff,ops_shipping_stats"
|
|
|
|
|
|
``` |