Commit e6aca6ec by 宋毅

tj

parent f7dc6ee3
...@@ -20,6 +20,7 @@ class ProductDao extends Dao { ...@@ -20,6 +20,7 @@ class ProductDao extends Dao {
"channel_item_code", "channel_item_code",
"channel_item_name", "channel_item_name",
"pic_url", "pic_url",
"product_short_desc",
"product_desc", "product_desc",
"desc_url", "desc_url",
"icon_url", "icon_url",
......
...@@ -7,11 +7,12 @@ module.exports = (db, DataTypes) => { ...@@ -7,11 +7,12 @@ module.exports = (db, DataTypes) => {
path_code: DataTypes.STRING(512), //产品类型编码路径,如:1/2 path_code: DataTypes.STRING(512), //产品类型编码路径,如:1/2
path_name: DataTypes.STRING(512), //产品类型名称路径,如:商标服务/商标注册 path_name: DataTypes.STRING(512), //产品类型名称路径,如:商标服务/商标注册
item_code: DataTypes.STRING(100), //产品编码 item_code: DataTypes.STRING(100), //产品编码
item_name: DataTypes.STRING(100), //产品名称 item_name: DataTypes.STRING(100), //产品名称
pic_url: DataTypes.STRING(500), //产品图片地址 pic_url: DataTypes.STRING(500), //产品图片地址
icon_url: DataTypes.STRING(500), //产品icon图片地址 icon_url: DataTypes.STRING(500), //产品icon图片地址
desc_url: DataTypes.STRING(500), //产品详情图片地址 desc_url: DataTypes.STRING(500), //产品详情图片地址
product_desc: DataTypes.STRING(1024), //简介 product_short_desc: DataTypes.STRING(200), //简介
product_desc: DataTypes.STRING(1024), //产品描述列表
channel_item_code: DataTypes.STRING(100), //渠道产品编码 channel_item_code: DataTypes.STRING(100), //渠道产品编码
channel_item_name: DataTypes.STRING(100), //渠道产品名称 channel_item_name: DataTypes.STRING(100), //渠道产品名称
is_enabled: { //状态 0禁用 1启用 is_enabled: { //状态 0禁用 1启用
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment