hk-service/doc/sql/goods_status.sql

8 lines
364 B
MySQL
Raw Normal View History

2025-02-20 17:32:53 +08:00
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 '商品状态';