商品在电商领域中是一个非常重要的领域,交易行为前提是有商品信息存在。本文我们分析商品表基本设计,其它复杂场景可以在此基础上进行扩展。需要说明第一本文所用数据是测试数据,可能与真实数据有偏差,仅供演示。第二本文展示商品核心字段,一些通用字段不展示。
类目表示商品分类并且具有层级关系:
后台类目有两个特点:标准和稳定。标准表示后台类目是业界通用的,并且层级不宜过多,通常不超过三级。稳定表示后台类目一旦确定不能轻易修改,否则设计上下游大量数据变更,工作量非常大,所以变更权限必须收敛到平台运营。
计算机领域有一句话:任何问题都可以通过加一层解决。为了解决后台类目不能灵活调整这个问题,业界在后台类目上设计了前台类目。
运营人员通常会对后台类目进行简化和整理,更加符合用户检索习惯,前台类目可以自由关联后台类目,可以一对多、多对一或者多对多。很多电商网站PC首页展示的类目一般是前台类目。
店铺类目灵活度更好可以交由商家管理,商家可以根据自身经营策略调整店铺类目,提升交易率,一般只支持两层。综上所述我们看一个实例:
CREATE TABLE `category_1_background` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', `category_id` varchar(64) NOT NULL COMMENT '类目ID', `category_name` varchar(128) NOT NULL COMMENT '类目名称', PRIMARY KEY (`id`), UNIQUE KEY `uq_category_id` (`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='一级后台类目表'; CREATE TABLE `category_2_background` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', `category_id` varchar(64) NOT NULL COMMENT '类目ID', `category_name` varchar(128) NOT NULL COMMENT '类目名称', `category_1_id` varchar(64) NOT NULL COMMENT '一级分类ID', PRIMARY KEY (`id`), UNIQUE KEY `uq_category_id` (`category_id`), KEY `idx_category_1_id` (`category_1_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='二级后台类目表'; CREATE TABLE `category_3_background` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', `category_id` varchar(64) NOT NULL COMMENT '类目ID', `category_name` varchar(128) NOT NULL COMMENT '类目名称', `category_2_id` varchar(64) NOT NULL COMMENT '二级分类ID', PRIMARY KEY (`id`), UNIQUE KEY `uq_category_id` (`category_id`), KEY `idx_category_2_id` (`category_2_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='三级后台类目表'; insert into `category_1_background`(`category_id`,`category_name`) values ('700','电子设备'); insert into `category_2_background`(`category_id`,`category_name`,`category_1_id`) values ('800','通讯设备','700'); insert into `category_3_background`(`category_id`,`category_name`,`category_2_id`) values ('900','手机','800');
关键属性是商品本质属性,关键属性中最核心两个属性是品牌和型号,一旦确定这两个属性等价于确定SPU(Standard Product Unit)标准化管理单元,例如品牌是小米,型号是10。在实践中这两个属性不放在属性表:
其它关键属性例如屏幕尺寸,CPU型号,CPU核数还是通过属性表承载。
销售属性又称为规格属性,如果关键属性确定,一旦销售属性再确定,那么就可以确定SKU(Stock Keeping Unit)库存计量单位,可以理解为仓库中实物商品,每一个SKU都有一个库存数量与一个价格与之对应。电商常见销售属性有颜色、容量、版本、套餐等等。
例如关键属性品牌是小米,型号是10,销售属性颜色是黑色和蓝色,容量是128G和256G,那么共有四个SKU:
除了关键属性与销售属性,其它属性称为描述信息。
属性和属性值由平台运营人员设置。属性有两种类型:选择与自定义。对于选择类型,运营人员需要为属性设置属性值。对于自定义类型,无需设置属性值。例如平台运营人员新增以下两个属性:
每个类目对应的属性是不同的,所以平台运营人员初始化属性和属性值之后,还要建立类目与属性关联关系。因为同一个属性对于不同类目重要性不同,所以在设置类目和属性关系时需要设置以下信息:
属性还有继承关系,平台运营人员不仅可以为三级类目设置属性,还可以为一级和二级类目设置属性。例如运营人员为二级类目设置A、B两种属性,那么这个二级类目下三级类目同时也具有A、B两种属性,类目与属性关系如下图:
CREATE TABLE `attribute` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `attribute_id` varchar(64) NOT NULL COMMENT '属性ID', `biz_type` tinyint(1) NOT NULL COMMENT '1选择 2自定义', `attribute_name` varchar(128) NOT NULL COMMENT '属性名称', PRIMARY KEY (`id`), UNIQUE KEY `uq_attribute_id` (`attribute_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='属性表'; insert into `attribute` (`attribute_id`, `biz_type`, `attribute_name`) values('100','1','颜色'); insert into `attribute` (`attribute_id`, `biz_type`, `attribute_name`) values('200','1','存储容量'); insert into `attribute` (`attribute_id`, `biz_type`, `attribute_name`) values('300','2','重量'); insert into `attribute` (`attribute_id`, `biz_type`, `attribute_name`) values('400','2','屏幕尺寸');
CREATE TABLE `attribute_value` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `attribute_value_id` varchar(64) NOT NULL COMMENT '属性值ID', `attribute_value` varchar(128) NOT NULL COMMENT '属性值名称', `attribute_id` varchar(64) NOT NULL COMMENT '属性ID', PRIMARY KEY (`id`), UNIQUE KEY `uq_attribute_value_id` (`attribute_value_id`), KEY `idx_attribute_id` (`attribute_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='属性值表'; --颜色属性值 insert into `attribute_value`(`attribute_value_id`,`attribute_value`,`attribute_id`) values ('1001','蓝色','100'); insert into `attribute_value`(`attribute_value_id`,`attribute_value`,`attribute_id`) values ('1002','黑色','100'); insert into `attribute_value`(`attribute_value_id`,`attribute_value`,`attribute_id`) values ('1003','红色','100'); --容量属性值 insert into `attribute_value`(`attribute_value_id`,`attribute_value`,`attribute_id`) values ('2001','64G','200'); insert into `attribute_value`(`attribute_value_id`,`attribute_value`,`attribute_id`) values ('2002','128G','200'); insert into `attribute_value`(`attribute_value_id`,`attribute_value`,`attribute_id`) values ('2003','256G','200');
CREATE TABLE `relation_category_attribute` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `relation_id` varchar(64) NOT NULL COMMENT '关系ID', `attribute_id` varchar(64) NOT NULL COMMENT '属性ID', `category_id` varchar(64) NOT NULL COMMENT '类目ID', `category_level` tinyint(1) NOT NULL COMMENT '类目层级', `attribute_type` tinyint(1) NOT NULL COMMENT '属性类型 1关键属性 2销售属性 3描述属性', `must_fill` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否必填', `product_scope` tinyint(1) NOT NULL COMMENT '商品维度 1spu 2sku', PRIMARY KEY (`id`), UNIQUE KEY `uq_relation_id` (`relation_id`), KEY `idx_category_id_attribute_id` (`category_id`,`attribute_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='属性与类目关系表'; insert into `relation_category_attribute`(`relation_id`,`attribute_id`,`category_id`,`category_level`,`attribute_type`,`must_fill`,`product_scope`) values ('10000000','100','900',3,2,1,2); insert into `relation_category_attribute`(`relation_id`,`attribute_id`,`category_id`,`category_level`,`attribute_type`,`must_fill`,`product_scope`) values ('10000001','200','900',3,2,1,2); insert into `relation_category_attribute`(`relation_id`,`attribute_id`,`category_id`,`category_level`,`attribute_type`,`must_fill`,`product_scope`) values ('10000002','300','900',3,3,1,2); insert into `relation_category_attribute`(`relation_id`,`attribute_id`,`category_id`,`category_level`,`attribute_type`,`must_fill`,`product_scope`) values ('10000003','400','900',3,1,1,1);
CREATE TABLE `product_brand` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `brand_id` varchar(128) NOT NULL COMMENT '品牌ID', `brand_cn_name` varchar(128) NOT NULL COMMENT '品牌中文名', `brand_en_name` varchar(128) NOT NULL COMMENT '品牌英文名', `logo_url` text COMMENT '品牌Logo', `brand_story` text COMMENT '品牌故事', PRIMARY KEY (`id`), KEY `idx_brand_id` (`brand_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='品牌表'; insert into `product_brand`(`brand_id`,`brand_cn_name`,`brand_en_name`) values ('1000','小米','MI');
第三章节属性相关信息由平台运营人员设置,为商家维护商品信息定制一个规范,这时商家可以根据设置自己的商品信息。
我们还是看一个手机示例:
CREATE TABLE `product` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `product_id` varchar(64) NOT NULL COMMENT '商品id', `shop_id` varchar(64) NOT NULL COMMENT '店铺id', `brand_id` bigint(20) NOT NULL COMMENT '品牌id', `product_model` varchar(256) NOT NULL COMMENT '商品型号', `product_name` varchar(256) NOT NULL COMMENT '商品名称', `sale_status` tinyint(1) NOT NULL COMMENT '销售状态 1上架 2下架', `category_3_id` varchar(64) NOT NULL COMMENT '三级分类id', `img_url` text COMMENT '图片路径', `description` text COMMENT '商品描述', PRIMARY KEY (`id`), UNIQUE KEY `uq_product_id` (`product_id`), KEY `idx_brand_id` (`brand_id`), KEY `idx_category_3_id` (`category_3_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='SPU'; insert into product(`product_id`, `shop_id`, `brand_id`, `product_model`, `product_name`, `category_3_id`, `sale_status`) values ('100', 'shop_1','100', '10', '小米10手机', '900', 1);
CREATE TABLE `relation_product_attribute` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `relation_id` varchar(64) NOT NULL COMMENT '关系ID', `product_id` varchar(64) DEFAULT NULL COMMENT '商品ID', `attribute_id` varchar(64) NOT NULL COMMENT '属性ID', `attribute_value_id` varchar(64) DEFAULT NULL COMMENT '属性值ID', `custom_attribute_value` varchar(256) DEFAULT NULL COMMENT '自定义属性值', PRIMARY KEY (`id`), UNIQUE KEY `uq_relation_id` (`relation_id`), KEY `idx_product_id` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='SPU与属性关系表'; insert into relation_product_attribute(`relation_id`, `product_id`, `attribute_id`, `attribute_value_id`, `custom_attribute_value`) values ('20000000', '100', '400', NULL, '6.67英寸');
CREATE TABLE `product_sku` ( `id` BIGINT(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `sku_id` VARCHAR(64) NOT NULL COMMENT 'skuId', `sku_name` VARCHAR(128) NOT NULL COMMENT 'sku名称', `product_id` VARCHAR(64) NOT NULL COMMENT '商品id', `sale_status` tinyint(1) NOT NULL COMMENT '销售状态 1上架 2下架', `orgin_price` DECIMAL(10,2) NOT NULL COMMENT '原价', `discount_price` DECIMAL(10,2) NOT NULL COMMENT '优惠价格', `stock_count` INT(11) NOT NULL COMMENT '剩余库存', `lock_stock_count` INT(11) NOT NULL COMMENT '锁定库存', `sale_stock_count` INT(11) NOT NULL COMMENT '销售量', `sku_img_url` TEXT COMMENT '图片路径', `sku_description` TEXT COMMENT '商品描述', PRIMARY KEY (`id`), UNIQUE KEY `uq_sku_id` (`sku_id`), KEY `idx_product_id` (`product_id`) ) ENGINE=INNODB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='SKU'; insert into `product_sku`(`sku_id`,`sku_name`,`product_id`,`orgin_price`,`discount_price`,`stock_count`,`lock_stock_count`,`sale_stock_count`,`sku_img_url`,`sku_description`, `sale_status`) values ('200','小米 10 蓝色 128G', '100',3000,3000,3,1,1000,NULL,NULL, 1);
CREATE TABLE `relation_product_sku_attribute` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `relation_id` varchar(64) NOT NULL COMMENT '关系ID', `sku_id` varchar(64) DEFAULT NULL COMMENT 'skuId', `attribute_id` varchar(64) NOT NULL COMMENT '属性ID', `attribute_value_id` varchar(64) DEFAULT NULL COMMENT '属性值ID', `custom_attribute_value` varchar(256) DEFAULT NULL COMMENT '自定义属性值', PRIMARY KEY (`id`), UNIQUE KEY `uq_relation_id` (`relation_id`), KEY `idx_sku_id` (`sku_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='SKU与属性关系表'; insert into relation_product_sku_attribute(`relation_id`, `sku_id`, `attribute_id`, `attribute_value_id`, `custom_attribute_value`) values ('30000000', '200', '100', '1001', NULL); insert into relation_product_sku_attribute(`relation_id`, `sku_id`, `attribute_id`, `attribute_value_id`, `custom_attribute_value`) values ('30000001', '200', '200', '2002', NULL); insert into relation_product_sku_attribute(`relation_id`, `sku_id`, `attribute_id`, `attribute_value_id`, `custom_attribute_value`) values ('30000002', '200', '300', NULL, '173克');
CREATE TABLE `product_sku_sn` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `sn_id` varchar(64) NOT NULL COMMENT '序列号ID', `sku_id` varchar(64) DEFAULT NULL COMMENT 'skuId', `sn` varchar(64) DEFAULT NULL COMMENT '序列号', `status` tinyint(1) NOT NULL COMMENT '状态 1未售 2已售', PRIMARY KEY (`id`), UNIQUE KEY `uq_sn_id` (`sn_id`), UNIQUE KEY `uq_sn_sku` (`sku_id`,`sn`), KEY `idx_sku_id` (`sku_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='SN'; insert into product_sku_sn(`sn_id`, `sku_id`, `sn`, `status`) values ('40000000', '200', 'SN-1', 1); insert into product_sku_sn(`sn_id`, `sku_id`, `sn`, `status`) values ('40000001', '200', 'SN-2', 1); insert into product_sku_sn(`sn_id`, `sku_id`, `sn`, `status`) values ('40000002', '200', 'SN-3', 1);
商品操作总体上分为平台运营和商家两个角色,平台运营主要维护类目、属性、类目与属性关系信息,相当于为商家维护商品设置规范。商家主要维护spu、sku、spu具体属性值是什么、sku具体属性值是什么、上下架状态。
以商品表为例,我们不应该以id
作为商品Id,应该设置product_id
作为商品Id,要求product_id
全局唯一,这样便于当数据量过大时进行分库分表。
商品表是一个高读写比典型,可能看10次才会产生1次购买行为,所以如果可以一次查询就查出所需信息对性能会更友好。
本文表设计并没有进行冗余,例如如果要冗余可以在relation_product_sku_attribute
表中新增attribute_value
字段记录属性值。冗余问题就是数据一致性,例如当属性值发生变化时,上述字段也要同步进行修改。
正如上述章节所述,商品表是一个高读写比的典型,我们希望一次查询可以将所需信息查询出来,而不是跨多张表去查询,但是我们又不想在业务表冗余数据。
我们可以将商品信息平铺到ES中一个索引,这个索引具有商品全部字段信息,例如在查询商品列表或者商详时可以直接访问这个索引。
product_sku
有库存字段,对于库存字段修改相对而言比较多,其它信息变更比较少,因为如果出现下单、购买、退款行为,库存信息就会发生变化。所以可以将sku主表库存字段单独成表,从而减轻主表压力。
本文通过介绍类目、属性、品牌、SPU、SKU、SN引出商品十二张基础表:
一级类目表:category_1_background 二级类目表:category_2_background 三级类目表:category_3_background 属性表:attribute 属性值表:attribute_value 类目与属性关系表:relation_category_attribute 品牌表:product_brand SPU表:product SKU表:product_sku SN表:product_sku_sn SPU与属性关系表:relation_product_attribute SKU与属性关系表:relation_product_sku_attribute
这些十二张基础表从不同侧面描述了商品信息,其它复杂场景可以在这些基础表上进行扩展。同时在第五章节我们讨论了五个延伸知识,希望本文对大家有所帮助。