Browse Source

some modified

huodongdong 6 years ago
parent
commit
449e85cbe2

+ 2 - 2
db/action/lj_event_log.md

@@ -1,4 +1,4 @@
-### lj_event_log table structure
+### event_log table structure
 > 此表为用户行为
 
 
@@ -19,7 +19,7 @@
 
 ##### create sql
 ```
-CREATE TABLE `lj_event_log` (
+CREATE TABLE `event_log` (
   `id` string(20) NOT NULL AUTO_INCREMENT,
   `user_id` string(16) DEFAULT NULL COMMENT '用户id',
   `merchant_id` string(20) DEFAULT NULL COMMENT '渠道商',

+ 1 - 1
db/product/lj_course.md

@@ -1,4 +1,4 @@
-### lj_course table structure
+### course table structure
 > 此表为课程存储对应的数据结构
 
 

+ 1 - 1
db/product/lj_course_sub_relation.md

@@ -1,4 +1,4 @@
-### lj_course_sub_relation table structure
+### course_sub_relation table structure
 > 此表为课程与单元的对应关系的数据结构
 
 

+ 1 - 1
db/product/lj_course_support_relation.md

@@ -1,4 +1,4 @@
-### lj_course_support_relation table structure
+### course_support_relation table structure
 > 此表为课程与周边的对应关系的数据结构
 
 

+ 1 - 1
db/product/lj_gruop.md

@@ -1,4 +1,4 @@
-### lj_group table structure
+### group table structure
 > 此表为标签分组的数据结构
 
 

+ 1 - 1
db/product/lj_lesson.md

@@ -1,4 +1,4 @@
-### lj_lesson table structure
+### lesson table structure
 > 此表为课存储对应的数据结构
 
 

+ 1 - 1
db/product/lj_lesson_ware_relation.md

@@ -1,4 +1,4 @@
-### lj_lesson_ware_relation table structure
+### lesson_ware_relation table structure
 > 此表为课与课件的对应关系的数据结构
 
 

+ 3 - 3
db/product/lj_merchant_product.md

@@ -1,15 +1,15 @@
 ### merchant_product table structure
-> 此表为渠道物品的数据结构, 可出售, merchant_product
+> 此表为渠道物品的数据结构, merchant_product
 
 
 | field | type | null | default | desc | extra |
 |----|:-----|:-------|:------|:-----|:-----|
 | id | varchar(512) | no | | 主键 | pri |
 | pid | varchar(512) | no | | 产品id | |
-| product_type | tinyint | no | | 产品类型, 课程,周边,课程包 | |
-| merchant_id | varchar(512) | no | | 渠道id | |
 | code | varchar(512) | no | | object_code, 课程编码/周边编码 | |
 | name | varchar(512) | no | | 产品名字 | |
+| type | tinyint | no | | 产品类型, 课程,周边,课程包 | |
+| merchant_id | varchar(512) | no | | 渠道id | |
 | status | smallint | no | | 状态 | |
 | gmt_created | timestamp | no | now | 创建时间 | |
 | gmt_modified | timestamp | no | now | 更新时间 | | |

+ 1 - 1
db/product/lj_package.md

@@ -1,4 +1,4 @@
-### lj_package table structure
+### package table structure
 > 此表为课程包存储对应的数据结构
 
 

+ 1 - 1
db/product/lj_package_item_relation.md

@@ -1,4 +1,4 @@
-### lj_package_item_relation table structure
+### package_item_relation table structure
 > 此表为课程包与商品的对应关系表
 
 

+ 1 - 1
db/product/lj_item_tag_relation.md

@@ -1,4 +1,4 @@
-### lj_item_tag_relation table structure
+### product_tag_relation table structure
 > 此表为商品与标签的对应关系
 
 

+ 1 - 1
db/product/lj_support.md

@@ -1,4 +1,4 @@
-### lj_support table structure
+### support table structure
 > 此表为周边存储对应的数据结构
 
 

+ 1 - 1
db/product/lj_support_self_relation.md

@@ -1,4 +1,4 @@
-### lj_support_self_relation table structure
+### support_self_relation table structure
 > 此表为周边与周边关系的数据结构
 
 

+ 1 - 1
db/product/lj_tag.md

@@ -1,4 +1,4 @@
-### lj_tag table structure
+### tag table structure
 > 此表为商品标签的数据存储结构
 
 

+ 1 - 1
db/product/lj_unit.md

@@ -1,4 +1,4 @@
-### lj_unit table structure
+### unit table structure
 > 此表为单元存储对应的数据结构
 
 

+ 1 - 1
db/product/lj_unit_lesson_relation.md

@@ -1,4 +1,4 @@
-### lj_unit_lesson_relation table structure
+### unit_lesson_relation table structure
 > 此表为单元与课的对应关系的数据结构
 
 

+ 1 - 1
db/product/lj_ware.md

@@ -1,4 +1,4 @@
-### lj_ware table structure
+### ware table structure
 > 此表为课件存储对应的数据结构
 
 

+ 1 - 1
db/product/recommend.md

@@ -1,4 +1,4 @@
-### lj_recommend table structure
+### recommend table structure
 > 此表为推荐存储对应的数据结构
 
 

+ 1 - 1
db/resource/lj_resource.md

@@ -1,4 +1,4 @@
-### lj_resource table structure
+### resource table structure
 > 此表为资源存储对应的数据结构
 
 

+ 3 - 3
tob/tobApi.md

@@ -123,7 +123,7 @@ POST
 
 #### 查询产品列表
 ```
-/products
+/merchant/products
 GET
 {
   'code':'xxx',
@@ -131,7 +131,7 @@ GET
   'type':0,
   'merchantId':23,
   'pageSize':10,
-  'pageNum':0,
+  'pageNo':0,
 }
 返回
 {
@@ -180,7 +180,7 @@ GET
 
 #### 获取特定产品详情
 ```
-/product
+/merchant/product
 GET
 {
   'productId':'xxxx',

+ 5 - 3
tob/tobDB.md

@@ -6,8 +6,10 @@
 |----|:-----|:-------|:------|:-----|:-----|
 | id | varchar(512) | no | | 订单id | pri |
 | pid | varchar(512) | no | | product id, 课程/配套/课程包 id, | |
-| product_type | float | no | | product type | |
-| gmt_created | unixStamp | no | | 订单创建时间 | |
+| code | varchar(512) | no | | 产品code | |
+| name | varchar(1024) | no | | 名字 | |
+| type | float | no | | product type | |
+| gmt_created | unixStamp | no | | 订单创建时间 | | |
 
 
 ### order table structure
@@ -100,7 +102,7 @@
 |----|:-----|:-------|:------|:-----|:-----|
 | id | varchar(512) | no | | 主键 | pri |
 | package_id | varchar(512) | no | | 课程包id | |
-| product_id | varchar(512) | no | | | |
+| pid | varchar(512) | no | | | |
 | cpPriceInPackage | float | no | | 产品在课程包内的cp价格 | |
 | sort | int | no | | 顺序 | |
 | status | smallint | no | | 状态 | |