ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
```[sql] CREATE TABLE ns_album ( album_id int(10) UNSIGNED NOT NULL AUTO_INCREMENT, site_id int(11) NOT NULL DEFAULT 0 COMMENT '站点id', site_name varchar(255) NOT NULL DEFAULT '' COMMENT '站点名称', album_name varchar(50) NOT NULL DEFAULT '' COMMENT '相册,名称', sort int(11) NOT NULL DEFAULT 0 COMMENT '排序', cover varchar(255) NOT NULL DEFAULT '' COMMENT '背景图', `desc` varchar(255) NOT NULL DEFAULT '' COMMENT '介绍', is_default tinyint(4) NOT NULL DEFAULT 0 COMMENT '是否默认', update_time int(11) NOT NULL DEFAULT 0 COMMENT '更新时间', num int(11) NOT NULL DEFAULT 0 COMMENT '相册图片数', PRIMARY KEY (album_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '相册表'; CREATE TABLE ns_album_pic ( pic_id int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键', pic_name varchar(255) NOT NULL DEFAULT '' COMMENT '名称', pic_path varchar(255) NOT NULL DEFAULT '' COMMENT '路径', pic_spec varchar(255) NOT NULL DEFAULT '' COMMENT '规格', site_id int(11) NOT NULL DEFAULT 0 COMMENT '站点id', update_time int(11) NOT NULL DEFAULT 0 COMMENT '更新时间', album_id int(11) NOT NULL DEFAULT 0 COMMENT '相册id', PRIMARY KEY (pic_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '相册图片表'; CREATE TABLE ns_goods ( goods_id int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '商品id', goods_name varchar(255) NOT NULL DEFAULT '' COMMENT '商品名称', goods_class int(11) NOT NULL DEFAULT 1 COMMENT '商品种类1.实物商品2.虚拟商品3.卡券商品', goods_class_name varchar(25) NOT NULL DEFAULT '' COMMENT '商品种类', goods_attr_class int(11) NOT NULL DEFAULT 1 COMMENT '商品类型id', goods_attr_name varchar(255) NOT NULL DEFAULT '' COMMENT '商品类型名称', site_id int(11) NOT NULL DEFAULT 0 COMMENT '所属店铺id', site_name varchar(255) NOT NULL DEFAULT '' COMMENT '所属店铺名称', website_id int(11) NOT NULL DEFAULT 0 COMMENT '所属分站id', category_id int(11) NOT NULL DEFAULT 0 COMMENT '分类id', category_id_1 int(11) NOT NULL DEFAULT 0 COMMENT '一级分类id', category_id_2 int(11) NOT NULL DEFAULT 0 COMMENT '二级分类id', category_id_3 int(11) NOT NULL DEFAULT 0 COMMENT '三级分类id', category_name varchar(255) NOT NULL DEFAULT '' COMMENT '所属分类名称', brand_id int(11) NOT NULL DEFAULT 0 COMMENT '品牌id', brand_name varchar(255) NOT NULL DEFAULT '' COMMENT '所属品牌名称', goods_image varchar(500) NOT NULL DEFAULT '' COMMENT '商品主图路径', goods_content text DEFAULT NULL COMMENT '商品详情', is_own tinyint(4) NOT NULL DEFAULT 0 COMMENT '是否自营', goods_state tinyint(4) NOT NULL DEFAULT 1 COMMENT '商品状态(1.正常0下架)', verify_state int(11) NOT NULL DEFAULT 1 COMMENT '审核状态(1 已审核 0 待审核 10 违规下架 -1 审核中 -2 审核失败)', verify_state_remark varchar(255) NOT NULL DEFAULT '' COMMENT '商品违规或审核失败说明', price decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT '商品价格(取第一个sku)', market_price decimal(10,2)(10, 2) NOT NULL DEFAULT 0.00 COMMENT '市场价格(取第一个sku)', cost_price decimal(10,2)NOT NULL DEFAULT 0.00 COMMENT '成本价(取第一个sku)', goods_stock int(11) NOT NULL DEFAULT 0 COMMENT '商品库存(总和)', goods_stock_alarm int(11) NOT NULL DEFAULT 0 COMMENT '库存预警', is_virtual tinyint(4) NOT NULL DEFAULT 0 COMMENT '是否虚拟类商品(0实物1.虚拟)', virtual_indate int(11) NOT NULL DEFAULT 1 COMMENT '虚拟商品有效期', is_free_shipping tinyint(4) NOT NULL DEFAULT 0 COMMENT '是否免邮', shipping_template int(11) NOT NULL DEFAULT 0 COMMENT '指定运费模板', goods_spec_format varchar(6000) NOT NULL DEFAULT '' COMMENT '商品规格格式', goods_attr_format varchar(1000) NOT NULL DEFAULT '' COMMENT '商品属性格式', is_delete tinyint(4) NOT NULL DEFAULT 0 COMMENT '是否已经删除', introduction varchar(255) NOT NULL DEFAULT '' COMMENT '促销语', keywords varchar(255) NOT NULL DEFAULT '' COMMENT '关键词', unit varchar(255) NOT NULL DEFAULT '' COMMENT '单位', sort int(11) NOT NULL DEFAULT 0 COMMENT '排序', create_time int(11) NOT NULL DEFAULT 0 COMMENT '创建时间', modify_time int(11) NOT NULL DEFAULT 0 COMMENT '修改时间', commission_rate decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT '分佣比率(按照分类)', video_url varchar(255) NOT NULL DEFAULT '' COMMENT '视频', discount_id int(11) NOT NULL DEFAULT 0 COMMENT '限时折扣id', seckill_id int(11) NOT NULL DEFAULT 0 COMMENT '限时秒杀id', topic_id int(11) NOT NULL DEFAULT 0 COMMENT '专题活动id', pintuan_id int(11) NOT NULL DEFAULT 0 COMMENT '拼团id', bargain_id int(11) NOT NULL DEFAULT 0 COMMENT '砍价id', sale_num int(11) NOT NULL DEFAULT 0 COMMENT '销量', goods_shop_category_ids varchar(255) NOT NULL DEFAULT '' COMMENT '店内分类id,逗号隔开', evaluate int(11) NOT NULL DEFAULT 0 COMMENT '评价数', evaluate_shaitu int(11) NOT NULL DEFAULT 0 COMMENT '评价晒图数', evaluate_shipin int(11) NOT NULL DEFAULT 0 COMMENT '评价视频数', evaluate_zhuiping int(11) NOT NULL DEFAULT 0 COMMENT '评价追评数', evaluate_haoping int(11) NOT NULL DEFAULT 0 COMMENT '评价好评数', evaluate_zhongping int(11) NOT NULL DEFAULT 0 COMMENT '评价中评数', evaluate_chaping int(11) NOT NULL DEFAULT 0 COMMENT '评价差评数', is_fenxiao tinyint(1) NOT NULL DEFAULT 0 COMMENT '参与分销(0不参与 1参与)', fenxiao_type tinyint(1) NOT NULL DEFAULT 1 COMMENT '分销佣金类型(1默认 2自行设置)', supplier_id int(11) NOT NULL DEFAULT 0 COMMENT '供应商id', sku_id int(11) NOT NULL DEFAULT 0 COMMENT '第一个商品sku_id', PRIMARY KEY (goods_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '商品表'; CREATE TABLE ns_goods_attribute ( attr_id int(11) NOT NULL AUTO_INCREMENT, attr_name varchar(50) NOT NULL DEFAULT '' COMMENT '属性名称', attr_class_id int(11) NOT NULL DEFAULT 0 COMMENT '商品类型id', attr_class_name varchar(50) NOT NULL DEFAULT '' COMMENT '商品类型名称', sort int(11) NOT NULL DEFAULT 0 COMMENT '属性排序号', is_query int(11) NOT NULL DEFAULT 0 COMMENT '是否参与筛选', is_spec int(11) NOT NULL DEFAULT 0 COMMENT '是否是规格属性', attr_value_list varchar(255) NOT NULL DEFAULT '' COMMENT '属性值列表('',''隔开注意键值对)', attr_value_format varchar(1000) NOT NULL DEFAULT '' COMMENT '属性值格式json', attr_type int(11) NOT NULL DEFAULT 0 COMMENT '属性类型 (1.单选 2.多选3. 输入 注意输入不参与筛选)', site_id int(11) NOT NULL DEFAULT 0 COMMENT '站点id', site_name varchar(50) NOT NULL DEFAULT '' COMMENT '店铺名称', PRIMARY KEY (attr_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '商品属性'; CREATE TABLE ns_goods_attribute_value ( attr_value_id int(11) NOT NULL AUTO_INCREMENT, attr_value_name varchar(50) NOT NULL DEFAULT '' COMMENT '属性值名称', attr_id int(11) NOT NULL DEFAULT 0 COMMENT '属性id', attr_class_id int(11) NOT NULL DEFAULT 0 COMMENT '类型id', sort int(11) NOT NULL DEFAULT 0 COMMENT '排序', PRIMARY KEY (attr_value_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '商品属性值表'; CREATE TABLE ns_goods_attr_class ( class_id int(11) NOT NULL AUTO_INCREMENT, class_name varchar(50) NOT NULL DEFAULT '' COMMENT '类型名称', site_id int(11) NOT NULL DEFAULT 0 COMMENT '所属店铺id', sort int(11) NOT NULL DEFAULT 0 COMMENT '排序号', PRIMARY KEY (class_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = ' 商品类型'; CREATE TABLE ns_goods_attr_class_brand ( id int(11) NOT NULL AUTO_INCREMENT, attr_class_id int(11) NOT NULL DEFAULT 0 COMMENT '商品类型id', brand_id int(11) NOT NULL DEFAULT 0 COMMENT '品牌id', PRIMARY KEY (id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '商品类型品牌关联'; CREATE TABLE ns_goods_attr_index ( id int(11) UNSIGNED NOT NULL AUTO_INCREMENT, goods_id int(11) NOT NULL DEFAULT 0 COMMENT '商品id', sku_id int(11) NOT NULL DEFAULT 0 COMMENT 'skuid', attr_id int(11) NOT NULL DEFAULT 0 COMMENT '属性id', attr_value_id int(11) NOT NULL DEFAULT 0 COMMENT '属性值id', attr_class_id int(11) NOT NULL DEFAULT 0 COMMENT '属性类型', PRIMARY KEY (id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '商品属性关联表'; CREATE TABLE ns_goods_brand ( brand_id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '索引ID', brand_name varchar(100) NOT NULL DEFAULT '' COMMENT '品牌名称', brand_initial varchar(1) NOT NULL DEFAULT '' COMMENT '品牌首字母', image_url varchar(100) NOT NULL DEFAULT '' COMMENT '图片', site_id int(11) NOT NULL DEFAULT 0 COMMENT '所属店铺id', sort int(11) NOT NULL DEFAULT 0 COMMENT '排序', create_time int(11) NOT NULL DEFAULT 0 COMMENT '创建时间', apply_time int(11) NOT NULL DEFAULT 0 COMMENT '申请时间', is_recommend tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否推荐', PRIMARY KEY (brand_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '商品品牌表'; CREATE TABLE ns_goods_browse ( id int(11) NOT NULL AUTO_INCREMENT, member_id int(11) NOT NULL DEFAULT 0 COMMENT '浏览人', browse_time int(11) NOT NULL DEFAULT 0 COMMENT '浏览时间', goods_id int(10) NOT NULL DEFAULT 0 COMMENT '商品id', sku_id int(11) NOT NULL DEFAULT 0 COMMENT 'sku_id', category_id int(11) NOT NULL DEFAULT 0 COMMENT '分类', category_id_1 int(11) NOT NULL DEFAULT 0 COMMENT '商品一级分类id', category_id_2 int(11) NOT NULL DEFAULT 0 COMMENT '商品二级分类id', category_id_3 int(11) NOT NULL DEFAULT 0 COMMENT '商品三级分类id', site_id int(10) NOT NULL DEFAULT 0 COMMENT '站点id', PRIMARY KEY (id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '商品浏览历史'; CREATE TABLE ns_goods_cart ( cart_id int(11) NOT NULL AUTO_INCREMENT, site_id int(11) NOT NULL DEFAULT 0 COMMENT '站点id', member_id int(11) NOT NULL DEFAULT 0 COMMENT '会员id', sku_id int(11) NOT NULL DEFAULT 0 COMMENT 'sku_id', num int(11) NOT NULL DEFAULT 0 COMMENT '数量', PRIMARY KEY (cart_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = ' 购物车'; CREATE TABLE ns_goods_category ( category_id int(11) NOT NULL AUTO_INCREMENT, category_name varchar(50) NOT NULL DEFAULT '' COMMENT '分类名称', short_name varchar(50) NOT NULL DEFAULT '' COMMENT '简称', pid int(11) NOT NULL DEFAULT 0 COMMENT '分类上级', level int(11) NOT NULL DEFAULT 0 COMMENT '层级', is_show int(11) NOT NULL DEFAULT 0 COMMENT '是否显示', sort int(11) NOT NULL DEFAULT 0 COMMENT '排序', image varchar(255) NOT NULL DEFAULT '' COMMENT '分类图片', keywords varchar(255) NOT NULL DEFAULT '' COMMENT '分类页面关键字', description varchar(255) NOT NULL DEFAULT '' COMMENT '分类介绍', attr_class_id int(11) NOT NULL DEFAULT 0 COMMENT '关联商品类型id', attr_class_name varchar(255) NOT NULL DEFAULT '' COMMENT '关联商品类型名称', category_id_1 int(11) NOT NULL DEFAULT 0 COMMENT '一级分类id', category_id_2 int(11) NOT NULL DEFAULT 0 COMMENT '二级分类id', category_id_3 int(11) NOT NULL DEFAULT 0 COMMENT '三级分类id', category_full_name varchar(255) NOT NULL DEFAULT '' COMMENT '组装名称', image_adv varchar(255) NOT NULL DEFAULT '' COMMENT '分类广告图', commission_rate decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT '佣金比率%', PRIMARY KEY (category_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = ' 商品分类'; CREATE TABLE ns_goods_collect ( collect_id int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键', member_id int(11) NOT NULL DEFAULT 0 COMMENT '会员id', goods_id int(11) NOT NULL DEFAULT 0 COMMENT '商品id', sku_id int(11) NOT NULL DEFAULT 0 COMMENT 'skuid', category_id int(11) NOT NULL DEFAULT 0 COMMENT '商品分类id', sku_name varchar(255) NOT NULL DEFAULT '' COMMENT '商品名称', sku_price decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT '商品价格', sku_image varchar(255) NOT NULL DEFAULT '' COMMENT '商品图片', create_time int(11) NOT NULL DEFAULT 0 COMMENT '收藏时间', site_id int(10) NOT NULL DEFAULT 0 COMMENT '站点id', PRIMARY KEY (collect_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '商品收藏表'; CREATE TABLE ns_goods_evaluate ( evaluate_id int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '评价ID', site_id int(11) NOT NULL DEFAULT 0 COMMENT '站点id', website_id int(11) NOT NULL DEFAULT 0 COMMENT '分站id', order_id int(11) NOT NULL DEFAULT 0 COMMENT '订单ID', order_no bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '订单编号', order_goods_id int(11) NOT NULL DEFAULT 0 COMMENT '订单项ID', goods_id int(11) NOT NULL DEFAULT 0 COMMENT '商品ID', sku_id int(11) NOT NULL DEFAULT 0 COMMENT '商品skuid', sku_name varchar(100) NOT NULL DEFAULT '' COMMENT '商品名称', sku_price decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT '商品价格', sku_image varchar(255) NOT NULL DEFAULT '' COMMENT '商品图片', content varchar(255) NOT NULL DEFAULT '' COMMENT '评价内容', images varchar(1000) NOT NULL DEFAULT '' COMMENT '评价图片', explain_first varchar(255) NOT NULL DEFAULT '' COMMENT '解释内容', member_id int(11) NOT NULL DEFAULT 0 COMMENT '评价人id', member_name varchar(100) NOT NULL DEFAULT '' COMMENT '评价人名称', member_headimg varchar(255) NOT NULL DEFAULT '' COMMENT '评价人头像', is_anonymous tinyint(1) NOT NULL DEFAULT 0 COMMENT '0表示不是 1表示是匿名评价', scores tinyint(1) NOT NULL DEFAULT 0 COMMENT '1-5分', again_content varchar(255) NOT NULL DEFAULT '' COMMENT '追加评价内容', again_images varchar(1000) NOT NULL DEFAULT '' COMMENT '追评评价图片', again_explain varchar(255) NOT NULL DEFAULT '' COMMENT '追加解释内容', explain_type int(11) NOT NULL DEFAULT 0 COMMENT '1好评2中评3差评', is_show int(1) NOT NULL DEFAULT 1 COMMENT '1显示 0隐藏', create_time int(11) NOT NULL DEFAULT 0 COMMENT '评价时间', again_time int(11) NOT NULL DEFAULT 0 COMMENT '追加评价时间', shop_desccredit decimal(10,2) NOT NULL DEFAULT 5.00 COMMENT '描述分值', shop_servicecredit decimal(10,2) NOT NULL DEFAULT 5.00 COMMENT '服务分值', shop_deliverycredit decimal(10,2) NOT NULL DEFAULT 5.00 COMMENT '配送分值', PRIMARY KEY (evaluate_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '商品评价表'; CREATE TABLE ns_goods_shop_category ( category_id int(11) NOT NULL AUTO_INCREMENT, category_name varchar(50) NOT NULL DEFAULT '' COMMENT '分类名称', short_name varchar(50) NOT NULL DEFAULT '' COMMENT '简称', pid int(11) NOT NULL DEFAULT 0 COMMENT '分类上级', level int(11) NOT NULL DEFAULT 0 COMMENT '层级', is_show int(11) NOT NULL DEFAULT 0 COMMENT '是否显示', sort int(11) NOT NULL DEFAULT 0 COMMENT '排序', image varchar(255) NOT NULL DEFAULT '' COMMENT '分类图片', keywords varchar(255) NOT NULL DEFAULT '' COMMENT '分类页面关键字', description varchar(255) NOT NULL DEFAULT '' COMMENT '分类介绍', category_id_1 int(11) NOT NULL DEFAULT 0 COMMENT '一级分类id', category_id_2 int(11) NOT NULL DEFAULT 0 COMMENT '二级分类id', category_full_name varchar(255) NOT NULL DEFAULT '' COMMENT '组装名称', site_id int(11) NOT NULL DEFAULT 0 COMMENT '所属店铺id', PRIMARY KEY (category_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = ' 商品店内分类'; CREATE TABLE ns_goods_sku ( sku_id int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '商品sku_id', sku_name varchar(255) NOT NULL DEFAULT '' COMMENT '商品sku名称', sku_no varchar(255) NOT NULL DEFAULT '' COMMENT '商品sku编码', sku_spec_format varchar(1000) NOT NULL DEFAULT '' COMMENT 'sku规格格式', price decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT 'sku单价', market_price decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT 'sku市场价', cost_price decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT 'sku成本价', discount_price decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT 'sku折扣价(默认等于单价)', promotion_type tinyint(4) NOT NULL DEFAULT 0 COMMENT '活动类型1.限时折扣', start_time int(11) NOT NULL DEFAULT 0 COMMENT '活动开始时间', end_time int(11) NOT NULL DEFAULT 0 COMMENT '活动结束时间', stock int(11) NOT NULL DEFAULT 0 COMMENT '商品sku库存', weight decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT '重量(单位g)', volume decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT '体积(单位立方米)', click_num int(11) NOT NULL DEFAULT 0 COMMENT '点击量', sale_num int(11) NOT NULL DEFAULT 0 COMMENT '销量', collect_num int(11) NOT NULL DEFAULT 0 COMMENT '收藏量', sku_image varchar(255) NOT NULL DEFAULT '' COMMENT 'sku主图', sku_images varchar(1000) NOT NULL DEFAULT '' COMMENT 'sku图片', goods_id int(11) NOT NULL DEFAULT 0 COMMENT '商品id', goods_class int(11) NOT NULL DEFAULT 1 COMMENT '商品种类1.实物商品2.虚拟商品3.卡券商品', goods_class_name varchar(25) NOT NULL DEFAULT '' COMMENT '商品种类', goods_attr_class int(11) NOT NULL DEFAULT 1 COMMENT '商品类型id', goods_attr_name varchar(255) NOT NULL DEFAULT '' COMMENT '商品类型名称', goods_name varchar(255) NOT NULL DEFAULT '' COMMENT '商品名称', site_id int(11) NOT NULL DEFAULT 0 COMMENT '所属店铺id', site_name varchar(255) NOT NULL DEFAULT '' COMMENT '所属店铺名称', website_id int(11) NOT NULL DEFAULT 0 COMMENT '所属分站id', category_id int(11) NOT NULL DEFAULT 0 COMMENT '分类id', category_id_1 int(11) NOT NULL DEFAULT 0 COMMENT '一级分类id', category_id_2 int(11) NOT NULL DEFAULT 0 COMMENT '二级分类id', category_id_3 int(11) NOT NULL DEFAULT 0 COMMENT '三级分类id', category_name varchar(255) NOT NULL DEFAULT '' COMMENT '所属分类名称', brand_id int(11) NOT NULL DEFAULT 0 COMMENT '品牌id', brand_name varchar(255) NOT NULL DEFAULT '' COMMENT '所属品牌名称', goods_content text DEFAULT NULL COMMENT '商品详情', is_own tinyint(4) NOT NULL DEFAULT 0 COMMENT '是否自营', goods_state tinyint(4) NOT NULL DEFAULT 1 COMMENT '商品状态(1.正常0下架)', verify_state int(11) NOT NULL DEFAULT 1 COMMENT '审核状态(1 已审核 0 待审核 10 违规下架 -1 审核中 -2 审核失败)', verify_state_remark varchar(255) NOT NULL DEFAULT '' COMMENT '商品违规或审核失败说明', goods_stock_alarm int(11) NOT NULL DEFAULT 0 COMMENT '库存预警', is_virtual tinyint(4) NOT NULL DEFAULT 0 COMMENT '是否虚拟类商品(0实物1.虚拟)', virtual_indate int(11) NOT NULL DEFAULT 1 COMMENT '虚拟商品有效期', is_free_shipping tinyint(4) NOT NULL DEFAULT 0 COMMENT '是否免邮', shipping_template int(11) NOT NULL DEFAULT 0 COMMENT '指定运费模板', goods_spec_format varchar(6000) NOT NULL DEFAULT '' COMMENT '商品规格格式', goods_attr_format varchar(1000) NOT NULL DEFAULT '' COMMENT '商品属性格式', is_delete tinyint(4) NOT NULL DEFAULT 0 COMMENT '是否已经删除', introduction varchar(255) NOT NULL DEFAULT '' COMMENT '促销语', keywords varchar(255) NOT NULL DEFAULT '' COMMENT '关键词', unit varchar(255) NOT NULL DEFAULT '' COMMENT '单位', sort int(11) NOT NULL DEFAULT 0 COMMENT '排序', create_time int(11) NOT NULL DEFAULT 0 COMMENT '创建时间', modify_time int(11) NOT NULL DEFAULT 0 COMMENT '修改时间', commission_rate decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT '佣金比率(按照分类)', video_url varchar(255) NOT NULL DEFAULT '' COMMENT '视频', discount_id int(11) NOT NULL DEFAULT 0 COMMENT '限时折扣id', seckill_id int(11) NOT NULL DEFAULT 0 COMMENT '秒杀id', topic_id int(11) NOT NULL DEFAULT 0 COMMENT '专题活动id', pintuan_id int(11) NOT NULL DEFAULT 0 COMMENT '拼团id', bargain_id int(11) NOT NULL DEFAULT 0 COMMENT '砍价id', goods_shop_category_ids varchar(255) NOT NULL DEFAULT '' COMMENT '店内分类id,逗号隔开', evaluate int(11) NOT NULL DEFAULT 0 COMMENT '评价数', evaluate_shaitu int(11) NOT NULL DEFAULT 0 COMMENT '晒图评价数', evaluate_shipin int(11) NOT NULL DEFAULT 0 COMMENT '视频评价数', evaluate_zhuiping int(11) NOT NULL DEFAULT 0 COMMENT '追评数', spec_name varchar(255) NOT NULL DEFAULT '' COMMENT '规格名称', evaluate_haoping int(11) NOT NULL DEFAULT 0 COMMENT '好评数', evaluate_zhongping int(11) NOT NULL DEFAULT 0 COMMENT '中评数', evaluate_chaping int(11) NOT NULL DEFAULT 0 COMMENT '差评数', supplier_id int(11) NOT NULL DEFAULT 0 COMMENT '供应商id', PRIMARY KEY (sku_id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '商品表'; CREATE TABLE ns_goods_virtual ( id int(11) NOT NULL AUTO_INCREMENT, site_id int(11) NOT NULL DEFAULT 0 COMMENT '店铺id', order_id int(11) NOT NULL DEFAULT 0 COMMENT '订单id', order_no varchar(255) NOT NULL DEFAULT '' COMMENT '订单编号', sku_id int(11) NOT NULL DEFAULT 0 COMMENT '商品sku_id', sku_name varchar(50) NOT NULL DEFAULT '' COMMENT '商品名称', code varchar(255) NOT NULL DEFAULT '' COMMENT '虚拟商品编码', is_veirfy int(11) NOT NULL DEFAULT 0 COMMENT '是否已经核销', verify_time int(11) NOT NULL DEFAULT 0 COMMENT '核销时间', member_id int(11) NOT NULL DEFAULT 0 COMMENT '所属人', sku_image varchar(255) NOT NULL DEFAULT '' COMMENT '虚拟商品图片', PRIMARY KEY (id) ) ENGINE = INNODB, CHARACTER SET utf8, COLLATE utf8_general_ci, COMMENT = '用户虚拟商品表'; ```