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 '商品状态';