| | |
| | | Target Server Version : 50718 (5.7.18-log) |
| | | File Encoding : 65001 |
| | | |
| | | Date: 16/05/2024 09:50:10 |
| | | Date: 16/05/2024 11:29:30 |
| | | */ |
| | | |
| | | SET NAMES utf8mb4; |
| | |
| | | DROP TABLE IF EXISTS `t_auction_goods`; |
| | | CREATE TABLE `t_auction_goods` ( |
| | | `id` bigint(20) NOT NULL COMMENT '拍卖商品id', |
| | | `goods_sku_id` int(11) NOT NULL COMMENT '商品id', |
| | | `goods_sku_id` bigint(20) NOT NULL COMMENT '商品id', |
| | | `goods_sku_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '商品名称', |
| | | `starting_price` decimal(10, 0) NOT NULL COMMENT '起拍价格', |
| | | `minimum_markup_amount` decimal(10, 0) NOT NULL COMMENT '最低加价金额', |
| | |
| | | `goods_sku_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '商品名称', |
| | | `starting_price` decimal(10, 0) NULL DEFAULT NULL COMMENT '起拍价格', |
| | | `minimum_markup_amount` decimal(10, 0) NULL DEFAULT NULL COMMENT '最低加价金额', |
| | | `item_quantity` smallint(6) NULL DEFAULT NULL COMMENT '拍品数量', |
| | | `guaranteed_trade_volume` smallint(6) NULL DEFAULT NULL COMMENT '兜底成交个数', |
| | | `listing_duration` smallint(6) NULL DEFAULT NULL COMMENT '拍卖时间(分钟)', |
| | | `backup_status` bit(1) NOT NULL DEFAULT b'0' COMMENT '设为备选', |
| | | `item_quantity` int(6) NULL DEFAULT NULL COMMENT '拍品数量', |
| | | `guaranteed_trade_volume` int(6) NULL DEFAULT NULL COMMENT '兜底成交个数', |
| | | `listing_duration` int(6) NULL DEFAULT NULL COMMENT '拍卖时间(分钟)', |
| | | `backup_status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '设为备选', |
| | | `status` tinyint(4) NULL DEFAULT 0 COMMENT '状态 0=预展中 1=拍卖中 2=已结束', |
| | | `create_by` varchar(55) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者', |
| | | `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', |