123
This commit is contained in:
@@ -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='取货点(门店)信息';
|
||||||
|
|||||||
7
docs/databases/重置预约订单数据.sql
Normal file
7
docs/databases/重置预约订单数据.sql
Normal 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='';
|
||||||
|
|
||||||
BIN
docs/tester/金利通卡二维码.jpg
Normal file
BIN
docs/tester/金利通卡二维码.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 MiB |
BIN
docs/xiugai/修改项20231202.docx
Normal file
BIN
docs/xiugai/修改项20231202.docx
Normal file
Binary file not shown.
BIN
docs/xuqiu/家庭菜窖自提点支行信息表.xls
Normal file
BIN
docs/xuqiu/家庭菜窖自提点支行信息表.xls
Normal file
Binary file not shown.
@@ -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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user