Files
ruoyi-java/sql/goods_info.sql
2026-06-10 17:00:39 +08:00

11 lines
618 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- 京东联盟订单商品信息goodsInfo 字段入库)
CREATE TABLE IF NOT EXISTS goods_info (
id BIGINT AUTO_INCREMENT PRIMARY KEY COMMENT '主键',
owner VARCHAR(16) DEFAULT NULL COMMENT 'g=自营 p=pop',
main_sku_id VARCHAR(64) DEFAULT NULL COMMENT '自营商品主Id',
product_id VARCHAR(64) DEFAULT NULL COMMENT 'POP商品主Id',
image_url VARCHAR(512) DEFAULT NULL COMMENT '商品主图',
shop_name VARCHAR(255) DEFAULT NULL COMMENT '店铺名称',
shop_id VARCHAR(64) DEFAULT NULL COMMENT '店铺Id'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='京东订单商品信息';