This commit is contained in:
Hsy
2025-02-20 17:32:53 +08:00
commit 144c1788f7
57 changed files with 2827 additions and 0 deletions

8
doc/sql/goods_status.sql Normal file
View File

@ -0,0 +1,8 @@
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 '商品状态';