Browse Source

加入标签类型,渠道id仅在tag上出现

xuchaolang 6 years ago
parent
commit
f6900426eb
2 changed files with 29 additions and 1 deletions
  1. 14 1
      db/product/lj_tag.md
  2. 15 0
      db/product/lj_tag_type.md

+ 14 - 1
db/product/lj_tag.md

@@ -5,12 +5,25 @@
 | field | type | null | default | desc | extra |
 |----|:-----|:-------|:------|:-----|:-----|
 | id | varchar(512) | no | | 主键 | pri |
+| group_id | string | no | | 标签组 | |
+| merchant_id | string | no | | 渠道id | |
 | name | varchar(512) | no | | 名字 | |
 | sort | int | no |  | tag排序 | |
-| type | smallint | no | | 标签类型 | |
 | status | smallint | no | | 状态 | |
 | gmt_created | timestamp | no | now | 创建时间 | |
 | gmt_modified | timestamp | no | now | 更新时间 | | |
 
 ##### index
 > unique index (code)
+
+
+| field | type | null | default | desc | extra |
+|----|:-----|:-------|:------|:-----|:-----|
+| id | varchar(512) | no | | 主键 | pri |
+| type_code | string | no | | 标签类型 | |
+| merchant_id | string | no | | 渠道id | |
+| name | varchar(512) | no | | 名字 | |
+| sort | int | no |  | tag排序 | |
+| status | smallint | no | | 状态 | |
+| gmt_created | timestamp | no | now | 创建时间 | |
+| gmt_modified | timestamp | no | now | 更新时间 | | |

+ 15 - 0
db/product/lj_tag_type.md

@@ -0,0 +1,15 @@
+### p_tag_type table structure
+> 此表为标签分组的数据结构
+
+| field | type | null | default | desc | extra |
+|----|:-----|:-------|:------|:-----|:-----|
+| id | varchar(512) | no | | 主键 | pri |
+| code | varchar(512) | no | | 唯一编码 | |
+| name | varchar(512) | no | | 名字 | |
+| sort | int | no |  | tag排序 | |
+| status | smallint | no | | 状态 | |
+| gmt_created | timestamp | no | now | 创建时间 | |
+| gmt_modified | timestamp | no | now | 更新时间 | | |
+
+##### index
+> unique index (code)