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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

Binary file not shown.

View File

@@ -29,5 +29,6 @@ public class LpkGoods {
private String typeCode; private String typeCode;
private String price; private String price;
private String picUrl; private String picUrl;
private String appContent;
} }

View File

@@ -25,4 +25,5 @@ public class LpkGoodsDetailsVo implements Vo {
private String typeCode;//类别编码 private String typeCode;//类别编码
private String price;//商品价格 private String price;//商品价格
private String picUrl;//图片 private String picUrl;//图片
private String appContent;
} }

View File

@@ -20,4 +20,5 @@ public class LpkGoodsDto implements Dto {
private String typeCode; private String typeCode;
private String price; private String price;
private String picUrl; private String picUrl;
private String appContent;
} }

View File

@@ -29,5 +29,6 @@ public class LpkGoodsVo implements Vo {
private String typeCode; private String typeCode;
private String price; private String price;
private String picUrl; private String picUrl;
private String appContent;
} }

View File

@@ -30,4 +30,5 @@ public class LpkStore {
private int sort; private int sort;
private String linker; private String linker;
private String picUrl; private String picUrl;
private String lonAndLat;
} }

View File

@@ -20,4 +20,5 @@ public class LpkStoreDetailsVo {
private int sort; private int sort;
private String linker; private String linker;
private String picUrl; private String picUrl;
private String lonAndLat;
} }

View File

@@ -22,4 +22,8 @@ public class LpkStoreDto implements Dto {
private String address; private String address;
private String phone; private String phone;
private String businessHours; private String businessHours;
private int sort;
private String linker;
private String picUrl;
private String lonAndLat;
} }

View File

@@ -28,4 +28,5 @@ public class LpkStoreVo implements Vo {
private String linker;//联系人 private String linker;//联系人
private String sort;//排序 private String sort;//排序
private String isEnable;//排序 private String isEnable;//排序
private String lonAndLat;
} }