Sfoglia il codice sorgente

新增user_recommend/user_tag/user_tag_product

xuchaolang 6 anni fa
parent
commit
2028fd8c02

+ 2 - 2
api/web/appApi.md

@@ -324,13 +324,13 @@ GET
       '/resource/a.jpg',
       ...
     ],
-    'shopQR':'http://xxxx',
     'goods':[
       {
         'id':'xxx',
         'chargeUnit':'xxx',
         'terminalPrice':'xxx',
         'isInCart':0,
+        'shopQR':'/resources/xxxx',
       },
     ],
     'relatedSupports':[
@@ -709,7 +709,6 @@ GET
       {
           'id':'xxx',
           'name':'xxxx',
-          'shopQR':'xxxx',
           'totalNum':8,
           'recs':[
             {
@@ -734,6 +733,7 @@ GET
                     'terminalPrice':123421.2,
                     'isInCart':0,
                     'recommend':0,
+                    'shopQR':'xxxx',
                 }
               ]
       },

+ 1 - 0
db/product/lj_goods.md

@@ -1,3 +1,4 @@
+
 ### p_goods table structure
 > 此表为商品表,标明产品在渠道上的价格
 >

+ 12 - 0
db/user/user_recommend.md

@@ -0,0 +1,12 @@
+### user_recommend table structure
+> 此表为用户首页默认的展示的课程表
+
+
+| field | type | null | default | desc | extra |
+|----|:-----|:-------|:------|:-----|:-----|
+| id | string | no | | id | |
+| uid | string | no | | 用户id | |
+| pid | smallint | no | | 商品类型, 课程 | |
+| sort | int | no | 0 | 排序字段 | |
+| gmt_created | timestamp | no | now | 创建时间 | |
+| gmt_modified | timestamp | no | now | 更新时间 | | |

+ 14 - 0
db/user/user_tag.md

@@ -0,0 +1,14 @@
+### user_tag table structure
+> 此表为商品标签的数据存储结构
+
+
+| field | type | null | default | desc | extra |
+|----|:-----|:-------|:------|:-----|:-----|
+| id | varchar(512) | no | | 主键 | pri |
+| uid | varchar(512) | no | | 用户id |  |
+| type_code | string | no | | 标签类型 | |
+| name | varchar(512) | no | | 名字 | |
+| sort | int | no |  | tag排序 | |
+| status | smallint | no | | 状态 | |
+| gmt_created | timestamp | no | now | 创建时间 | |
+| gmt_modified | timestamp | no | now | 更新时间 | | |

+ 14 - 0
db/user/user_tag_product_relation.md

@@ -0,0 +1,14 @@
+### user_tag_product_relation table structure
+> 此表为用户与标签的对应关系
+
+
+| field | type | null | default | desc | extra |
+|----|:-----|:-------|:------|:-----|:-----|
+| id | varchar(255) | no | | 主键 | pri |
+| tag_id |varchar(255) | no | | 标签id | |
+| pid | varchar(255) | no | | 产品id | |
+| sort | int | no | 0 | 排序 | |
+| gmt_created | timestamp | no | now | 创建时间 | | |
+
+##### index
+> unique index (tag_id, item_id)