Commit e6aca6ec by 宋毅

tj

parent f7dc6ee3
......@@ -20,6 +20,7 @@ class ProductDao extends Dao {
"channel_item_code",
"channel_item_name",
"pic_url",
"product_short_desc",
"product_desc",
"desc_url",
"icon_url",
......
......@@ -11,7 +11,8 @@ module.exports = (db, DataTypes) => {
pic_url: DataTypes.STRING(500), //产品图片地址
icon_url: DataTypes.STRING(500), //产品icon图片地址
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_name: DataTypes.STRING(100), //渠道产品名称
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