🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
CREATE TABLE IF NOT EXISTS `yf_goods_common` ( `common_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '商品id', `common_name` varchar(50) NOT NULL COMMENT '商品名称', `common_promotion_tips` varchar(50) NOT NULL COMMENT '商品广告词', `cat_id` int(10) unsigned NOT NULL COMMENT '商品分类', `cat_name` varchar(200) NOT NULL COMMENT '商品分类', `shop_id` int(10) unsigned NOT NULL COMMENT '店铺id', `shop_name` varchar(50) NOT NULL COMMENT '店铺名称', `shop_cat_id` varchar(255) NOT NULL DEFAULT '' COMMENT '店铺分类id 首尾用,隔开', `shop_goods_cat_id` varchar(255) NOT NULL DEFAULT '0' COMMENT '店铺商品分类id -- json', `goods_id` text NOT NULL COMMENT 'goods_id -- json [goods_id: xx, color_id: xx]', `shop_self_support` tinyint(1) NOT NULL DEFAULT '1', `shop_status` tinyint(1) unsigned NOT NULL DEFAULT '3' COMMENT '店铺状态-3:开店成功 2:待审核付款 1:待审核资料 0:关闭', `common_property` text NOT NULL COMMENT '属性', `common_spec_name` varchar(255) NOT NULL COMMENT '规格名称', `common_spec_value` text NOT NULL COMMENT '规格值', `brand_id` int(10) unsigned NOT NULL COMMENT '品牌id', `brand_name` varchar(100) NOT NULL COMMENT '品牌名称', `type_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '类型id', `common_image` varchar(255) NOT NULL COMMENT '商品主图', `common_packing_list` text NOT NULL, `common_service` text NOT NULL, `common_state` tinyint(3) unsigned NOT NULL COMMENT '商品状态 0下架,1正常,10违规(禁售)', `common_state_remark` varchar(255) NOT NULL COMMENT '违规原因', `common_verify` tinyint(3) unsigned NOT NULL COMMENT '商品审核 1通过,0未通过,10审核中', `common_verify_remark` varchar(255) NOT NULL COMMENT '审核失败原因', `common_add_time` datetime NOT NULL COMMENT '商品添加时间', `common_sell_time` datetime NOT NULL COMMENT '上架时间', `common_price` decimal(10,2) NOT NULL COMMENT '商品价格', `common_market_price` decimal(10,2) NOT NULL COMMENT '市场价', `common_cost_price` decimal(10,2) NOT NULL COMMENT '成本价', `common_stock` int(10) unsigned NOT NULL COMMENT '商品库存', `common_limit` smallint(3) NOT NULL DEFAULT '0' COMMENT '每人限购 0 代表不限购', `common_alarm` int(10) unsigned NOT NULL DEFAULT '0', `common_code` varchar(50) NOT NULL COMMENT '商家编号', `common_platform_code` varchar(100) NOT NULL DEFAULT '0' COMMENT '平台货号', `common_cubage` decimal(10,2) NOT NULL COMMENT '商品重量', `common_collect` int(10) NOT NULL DEFAULT '0' COMMENT '商品收藏量', `common_evaluate` int(10) NOT NULL DEFAULT '0' COMMENT '商品评论数', `common_salenum` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商品销量', `common_invoices` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '是否开具增值税发票 1是,0否', `common_is_return` tinyint(1) NOT NULL DEFAULT '1', `common_formatid_top` int(10) unsigned NOT NULL COMMENT '顶部关联板式', `common_formatid_bottom` int(10) unsigned NOT NULL COMMENT '底部关联板式', `common_is_recommend` tinyint(1) NOT NULL DEFAULT '0' COMMENT '商品推荐', `common_is_virtual` tinyint(1) NOT NULL DEFAULT '0' COMMENT '虚拟商品', `common_virtual_date` date NOT NULL COMMENT '虚拟商品有效期', `common_virtual_refund` tinyint(1) NOT NULL DEFAULT '0' COMMENT '支持过期退款', `transport_type_id` int(10) NOT NULL DEFAULT '0' COMMENT '0--> 固定运费 非零:transport_type_id 运费类型', `transport_type_name` varchar(30) NOT NULL COMMENT '运费模板名称', `common_freight` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '运费', `common_location` text NOT NULL COMMENT '商品所在地 json', `common_is_tuan` tinyint(1) NOT NULL DEFAULT '0' COMMENT '商品是否参加团购活动', `common_is_xian` tinyint(1) NOT NULL DEFAULT '0' COMMENT '商品是否参加限时折扣活动', `common_is_jia` tinyint(1) NOT NULL DEFAULT '0' COMMENT '商品是否参加加价购活动', `common_shop_contract_1` tinyint(1) NOT NULL DEFAULT '0' COMMENT '消费者保障-由店铺映射到商品,用来检索使用', `common_shop_contract_2` tinyint(1) NOT NULL DEFAULT '0' COMMENT '消费者保障-由店铺映射到商品,用来检索使用', `common_shop_contract_3` tinyint(1) NOT NULL DEFAULT '0' COMMENT '消费者保障-由店铺映射到商品,用来检索使用', `common_shop_contract_4` tinyint(1) NOT NULL DEFAULT '0' COMMENT '消费者保障-由店铺映射到商品,用来检索使用', `common_shop_contract_5` tinyint(1) NOT NULL DEFAULT '0' COMMENT '消费者保障-由店铺映射到商品,用来检索使用', `common_shop_contract_6` tinyint(1) NOT NULL DEFAULT '0', `cps_rate` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '一级分佣比例', `second_cps_rate` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '二级分佣比例', `third_cps_rate` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '三级分佣比例', `common_cps_rate` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '一级分佣比例', `common_second_cps_rate` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '二级分佣比例', `common_third_cps_rate` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '三级分佣比例', `common_is_directseller` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否参与推广 0不参与 1参与', `product_lock_flag` tinyint(1) NOT NULL DEFAULT '0' COMMENT '店铺必须分销标记 1:不可删除 0:可以删除', `product_agent_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '代理商id-可更改,该店铺下级都属于该代理商。', `district_id` mediumint(8) NOT NULL DEFAULT '0' COMMENT '所在地,从店铺中同步,冗余检索使用', `supply_shop_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商品来源-供应商店铺id', `product_is_allow_update` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否可以修改内容', `product_is_allow_price` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否可以修改价格-可以取消', `product_is_behalf_delivery` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否代发货', `common_parent_id` int(10) NOT NULL DEFAULT '0' COMMENT '分销原产品', `goods_recommended_min_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '建议最低零售价', `goods_recommended_max_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '建议最高零售价', `product_distributor_flag` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否为分销商品 0-自有商品', `common_distributor_description` text COMMENT '分销说明', `common_distributor_flag` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '1价格修改 2内容修改', `common_cps_commission` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '直属一级佣金-便于佣金排序', `common_goods_from` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1正常添加,2外部导入。默认为1', `transport_area_id` int(11) NOT NULL DEFAULT '0' COMMENT '售卖区域', PRIMARY KEY (`common_id`), KEY `cat_id` (`cat_id`), KEY `shop_id` (`shop_id`), KEY `type_id` (`type_id`), KEY `common_verify` (`common_verify`), KEY `common_state` (`common_state`), KEY `common_name` (`common_name`), KEY `shop_name` (`shop_name`), KEY `brand_name` (`brand_name`), KEY `brand_id` (`brand_id`), KEY `shop_status` (`shop_status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='商品公共内容表-未来可分表' AUTO_INCREMENT=714 ;