This commit is contained in:
liupopo
2023-12-04 12:01:26 +08:00
parent 8dbe4f2ceb
commit 1fc119fa1a
13 changed files with 21 additions and 0 deletions

View File

@@ -33,6 +33,8 @@ CREATE TABLE `lpk_goods` (
`price` double(12,2) NULL DEFAULT NULL COMMENT '商品价格',
`picUrl` VARCHAR(1024) NULL DEFAULT NULL COMMENT '商品图片URL',
`appContent` text NULL DEFAULT NULL COMMENT '商品介绍',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB COMMENT='商品信息';
@@ -130,6 +132,7 @@ CREATE TABLE `lpk_store` (
`address` VARCHAR(100) NULL DEFAULT NULL COMMENT '地址',
`phone` VARCHAR(100) NULL DEFAULT NULL COMMENT '电话',
`businessHours` VARCHAR(100) NULL DEFAULT NULL COMMENT '营业时间提货时间早X点到晚X点',
`lonAndLat` VARCHAR(100) NULL DEFAULT NULL COMMENT '经度,纬度',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB COMMENT='取货点(门店)信息';

View File

@@ -0,0 +1,7 @@
-- 重置预约-订单数据
delete from lpk_customer;
delete from lpk_reserve_order;
delete from lpk_reserve_order_goods;
update lpk_giftcard set state='2',customerSid='',customerMobile='';