etrade_order_fengliang_2024.06.17.sql 3.38 KB
USE dili_etrade ;
DROP TABLE IF EXISTS dili_etrade.`order_goods_mark`;
CREATE TABLE dili_etrade.`order_goods_mark` (
    `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
    `market_id` bigint DEFAULT NULL COMMENT '市场自增id',
    `order_id` bigint DEFAULT NULL COMMENT '交易订单自增id',
    `order_code` varchar(60) DEFAULT NULL COMMENT '交易订单号',
    `order_state` tinyint DEFAULT NULL COMMENT '订单状态',
    `product_id` bigint DEFAULT NULL COMMENT '商品自增id',
    `order_goods_id` bigint NOT NULL COMMENT '订单商品id',
    `product_code` varchar(60) DEFAULT NULL COMMENT '商品编码',
    `product_category_id` bigint DEFAULT NULL COMMENT '商品品类',
    `product_name` varchar(64) DEFAULT NULL COMMENT '商品名称',
    `product_price` decimal(20,2) DEFAULT NULL COMMENT '商品单价',
    `product_total_price` decimal(20,2) DEFAULT NULL COMMENT '商品总价',
    `product_weight` decimal(20,2) DEFAULT NULL COMMENT '商品重量',
    `version` int DEFAULT NULL COMMENT '版本号',
    `shop_id` bigint DEFAULT NULL COMMENT '店铺id',
    `shop_name` varchar(50) DEFAULT NULL COMMENT '店铺名称',
    `shop_customer_id` bigint DEFAULT NULL COMMENT '店铺所属用户id',
    `shop_customer` varchar(50) DEFAULT NULL COMMENT '店铺商户名称',
    `category_first` bigint DEFAULT NULL COMMENT '一级品类',
    `category_first_name` varchar(32) DEFAULT NULL COMMENT '一级品类名称',
    `category_second` bigint DEFAULT NULL COMMENT '二级品类',
    `category_second_name` varchar(32) DEFAULT NULL COMMENT '二级品类名称',
    `category_third` bigint DEFAULT NULL COMMENT '三级品类',
    `category_third_name` varchar(32) DEFAULT NULL COMMENT '三级品类名称',
    `category_json` json DEFAULT NULL COMMENT '品类路径',
    `category_json_name` json DEFAULT NULL COMMENT '品类路径名称',
    `mark` varchar(40) DEFAULT NULL COMMENT '异常提示',
    `pay_time` datetime DEFAULT NULL COMMENT '支付时间',
    `price_low_limit` decimal(20,2) DEFAULT NULL COMMENT '单价下限',
    `price_up_limit` decimal(20,2) DEFAULT NULL COMMENT '单价上限',
    `totle_low_limit` decimal(20,2) DEFAULT NULL COMMENT '总价下限',
    `totle_up_limit` decimal(20,2) DEFAULT NULL COMMENT '总价上限',
    `weight_low_limit` decimal(20,2) DEFAULT NULL COMMENT '重量下限',
    `weight_up_limit` decimal(20,2) DEFAULT NULL COMMENT '重量上限',
    `price_error` tinyint DEFAULT NULL COMMENT '1单价异常',
    `weight_error` tinyint DEFAULT NULL COMMENT '1重量异常',
    `totle_error` tinyint DEFAULT NULL COMMENT '1金额异常',
    `state` tinyint DEFAULT NULL COMMENT '2原始单据,3人工处理',
    `operator` varchar(50) DEFAULT NULL COMMENT '操作人',
    `operator_id` bigint DEFAULT NULL COMMENT '操作人id',
    `operate_time` datetime DEFAULT NULL COMMENT '操作时间',
    `operate_type` tinyint DEFAULT NULL COMMENT '操作类型(1正常销售,2零售(小批),3精品加工,4特价促销,5尾货(次品),6其他)',
    `notice` varchar(100) DEFAULT NULL COMMENT '备注',
    `create_time` datetime DEFAULT NULL COMMENT '拉取时间',
    PRIMARY KEY (`id`) USING BTREE,
    KEY `productid` (`product_id`) USING BTREE,
    KEY `orderCode` (`order_code`) USING BTREE,
    KEY `categoryId` (`product_category_id`),
    KEY `thirdid` (`category_third`)
) ENGINE=InnoDB COMMENT='电子交易订单-商品-异常标记';