8 lines
364 B
MySQL
8 lines
364 B
MySQL
![]() |
CREATE TABLE `goods_status`
|
||
|
(
|
||
|
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||
|
`api_id` int(255) DEFAULT NULL COMMENT '三方接口',
|
||
|
`api_product_id` int(255) DEFAULT NULL COMMENT '三方商品id',
|
||
|
`status` int(10) DEFAULT NULL COMMENT '商品状态 0=上架 1=下架',
|
||
|
primary key (id)
|
||
|
) COMMENT '商品状态';
|