You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.3 KiB
24 lines
1.3 KiB
DROP TABLE IF EXISTS `atg_goods_sku`;
|
|
CREATE TABLE `atg_goods_sku` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`goods_id` int(11) NOT NULL COMMENT '商品id',
|
|
`goods_code` varchar(50) DEFAULT NULL COMMENT '商品条码',
|
|
`goods_sn` varchar(60) NOT NULL COMMENT '商品唯一货号',
|
|
`goods_attr` varchar(60) DEFAULT NULL COMMENT '属性匹配',
|
|
`weight` mediumint(8) DEFAULT NULL COMMENT '重量',
|
|
`length` mediumint(8) DEFAULT NULL COMMENT '长度',
|
|
`width` mediumint(8) DEFAULT NULL COMMENT '宽度',
|
|
`height` mediumint(8) DEFAULT NULL COMMENT '高度',
|
|
`diameter` mediumint(8) DEFAULT NULL COMMENT '直径',
|
|
`sold_count` int(10) DEFAULT NULL COMMENT '已售数量',
|
|
`stock` int(10) DEFAULT NULL COMMENT '库存',
|
|
`market_price` int(20) DEFAULT NULL COMMENT '市场价',
|
|
`price` int(20) DEFAULT NULL COMMENT '销售价',
|
|
`model_id` int(11) DEFAULT NULL COMMENT '模型id',
|
|
`is_sale` tinyint(1) DEFAULT '0' COMMENT '该商品是否开放销售,1为是,0为否',
|
|
`sort_order` smallint(3) DEFAULT '0' COMMENT '排序',
|
|
`is_delete` tinyint(1) DEFAULT '0' COMMENT '是否删除,1为已删除',
|
|
`created_at` int(10) DEFAULT '0' COMMENT '创建时间',
|
|
`updated_at` int(10) DEFAULT '0' COMMENT '更新时间',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品sku表';
|