商品加入购买状态 商品详情加入水印

This commit is contained in:
litianxiang
2026-06-01 15:53:02 +08:00
parent 3ddf4051e3
commit afdb90e196
14 changed files with 190 additions and 34 deletions

View File

@@ -93,6 +93,7 @@ CREATE TABLE seller_order_item (
create_time DATETIME DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
deleted INT(1) DEFAULT 0 COMMENT '是否删除0-否1-是',
product_category JSON COMMENT '商品分类列表',
status TINYINT DEFAULT 0 COMMENT '商品状态0-未支付1-已支付2-已取消',
INDEX idx_order_id (order_id),
INDEX idx_listing_id (listing_id),
INDEX idx_deleted (deleted)