Skip to content

Commit

Permalink
外键说明文档
Browse files Browse the repository at this point in the history
  • Loading branch information
xxjwxc committed Oct 27, 2019
1 parent 56957a9 commit 952fa3e
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README_zh_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ Flags:
- 数据库表,列字段注释支持
- singular_table 表名复数(大驼峰)
- json tag json标签输出
- gorm.Model 基本模型 [详信息请看>>>](doc/export_cn.md#151)
- gorm.Model 基本模型 [简单带外键模式导出>>>](doc/export_cn.md)
- PRIMARY_KEY 将列指定为主键
- UNIQUE 将列指定为唯一
- NOT NULL 将列指定为非 NULL
- INDEX 创建具有或不带名称的索引, 如果多个索引同名则创建复合索引
- UNIQUE_INDEX 和 INDEX 类似,只不过创建的是唯一索引
- 支持外键相关属性 [详信息请看>>>](doc/export_cn.md#114)
- 支持外键相关属性 [简单带外键模式导出>>>](doc/export_cn.md)

### 您可以在这里丰富数据映射类型 [def](data/view/cnf/def.go)

Expand Down
27 changes: 25 additions & 2 deletions doc/export_cn.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
## 5. 导出
## 目录
- [sql 原语](#sql-原语)
- [复杂不带外键导出](#复杂不带外键导出)
- [复杂单表模式导出](#复杂单表模式导出)
- [简单带json导出](#简单带json导出)
- [简单不带json导出](#简单不带json导出)
- [简单带外键模式导出](#简单带外键模式导出)
- [sql2](#sql2)
- [支持gorm.Model模式导出](#支持gorm.Model模式导出)


### sql 原语

- sql:
```
Expand All @@ -23,6 +34,8 @@ CREATE TABLE `user_account_tbl` (

-------------

### 复杂不带外键导出

- 参数:singular_table = false simple = false is_foreign_key = false

###### --->导出结果
Expand All @@ -45,6 +58,8 @@ type UserAccountTbl struct {

-------------

### 复杂单表模式导出

- 参数:singular_table = true simple = false is_foreign_key = false

###### --->导出结果
Expand All @@ -67,6 +82,8 @@ type User_account_tbl struct {

-------------

### 简单带json导出

- 参数:singular_table = false simple = true is_json_tag = true is_foreign_key = false

###### --->导出结果
Expand All @@ -89,6 +106,8 @@ type UserAccountTbl struct {
```
--------------

### 简单不带json导出

- 参数:singular_table = false simple = true is_json_tag = false is_foreign_key = false

###### --->导出结果
Expand All @@ -111,6 +130,8 @@ type UserAccountTbl struct {

--------------

### 简单带外键模式导出

- 参数:singular_table = false simple = true is_json_tag = false is_foreign_key = true

###### --->导出结果
Expand All @@ -134,7 +155,7 @@ type UserAccountTbl struct {

--------------

- sql:
## sql2
```
CREATE TABLE `user_info_tbl` (
`id` int(11) NOT NULL AUTO_INCREMENT,
Expand All @@ -148,6 +169,8 @@ CREATE TABLE `user_info_tbl` (
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='用户信息'
```

### 支持gorm.Model模式导出

- 参数:singular_table = false simple = true is_json_tag = false

###### --->导出结果
Expand Down

0 comments on commit 952fa3e

Please sign in to comment.