新增删除seller接口

This commit is contained in:
litianxiang
2026-05-04 13:35:34 +08:00
parent 4456722328
commit 1d4c8ec629
7 changed files with 109 additions and 6 deletions

View File

@@ -28,7 +28,9 @@ CREATE TABLE seller_listing_image (
sort_order INT DEFAULT 0 COMMENT '排序',
is_selected INT(1) DEFAULT 0 COMMENT '是否选中: 0-未选中, 1-选中(仅product有效)',
create_time DATETIME DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
INDEX idx_listing_id (listing_id)
deleted INT(1) DEFAULT 0 COMMENT '是否删除0-否1-是',
INDEX idx_listing_id (listing_id),
INDEX idx_deleted (deleted)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品图片表';
-- 设计师表