liupopo 1 year ago
parent
commit
e356fd327a
  1. 129
      docs/databases/table_create.sql
  2. 7
      docs/info.txt
  3. BIN
      docs/xuqiu/预约提货系统-功能列表.xlsx
  4. 15
      docs/xuqiu/预约提货系统.docx
  5. BIN
      docs/金禾通功能截图/微信截图_20231121140027.png
  6. BIN
      docs/金禾通功能截图/微信截图_20231121140210.png
  7. BIN
      docs/金禾通功能截图/微信截图_20231121140335.png
  8. BIN
      docs/金禾通功能截图/微信截图_20231121140342.png
  9. BIN
      docs/金禾通功能截图/微信截图_20231121140522.png
  10. BIN
      docs/金禾通功能截图/微信截图_20231121140657.png
  11. BIN
      docs/金禾通功能截图/微信截图_20231121140716.png
  12. BIN
      docs/金禾通功能截图/微信截图_20231121140722.png
  13. BIN
      docs/金禾通功能截图/微信截图_20231121140813.png
  14. BIN
      docs/金禾通功能截图/微信截图_20231121140836.png
  15. BIN
      docs/金禾通功能截图/微信截图_20231121140852.png
  16. BIN
      docs/金禾通功能截图/微信截图_20231121140900.png
  17. BIN
      docs/金禾通功能截图/微信截图_20231121140943.png
  18. BIN
      docs/金禾通功能截图/微信截图_20231121141006.png
  19. BIN
      docs/金禾通功能截图/微信截图_20231121141057.png
  20. BIN
      docs/金禾通功能截图/微信截图_20231121141116.png
  21. BIN
      docs/金禾通功能截图/微信截图_20231121141157.png
  22. BIN
      docs/金禾通功能截图/微信截图_20231121141223.png
  23. BIN
      docs/金禾通功能截图/微信截图_20231121141241.png
  24. BIN
      docs/金禾通功能截图/微信截图_20231121141246.png
  25. BIN
      docs/金禾通功能截图/微信截图_20231121141250.png
  26. BIN
      docs/金禾通功能截图/微信截图_20231121141257.png
  27. BIN
      docs/金禾通功能截图/微信截图_20231121141332.png
  28. BIN
      docs/金禾通功能截图/微信截图_20231121141343.png
  29. BIN
      docs/金禾通功能截图/微信截图_20231121141353.png
  30. BIN
      docs/金禾通功能截图/微信截图_20231121141358.png
  31. BIN
      docs/金禾通功能截图/微信截图_20231121141412.png
  32. BIN
      docs/金禾通功能截图/微信截图_20231121141425.png
  33. BIN
      docs/金禾通功能截图/微信截图_20231121141444.png
  34. BIN
      docs/金禾通功能截图/微信截图_20231121141512.png
  35. BIN
      docs/金禾通功能截图/微信截图_20231121141517.png
  36. BIN
      docs/金禾通功能截图/微信截图_20231121141554.png
  37. BIN
      docs/金禾通功能截图/微信截图_20231121141610.png
  38. BIN
      docs/金禾通功能截图/微信截图_20231121141615.png
  39. BIN
      docs/金禾通功能截图/微信截图_20231121141627.png
  40. BIN
      docs/金禾通功能截图/微信截图_20231121141637.png
  41. BIN
      docs/金禾通功能截图/微信截图_20231121141642.png
  42. BIN
      docs/金禾通功能截图/微信截图_20231121141646.png
  43. BIN
      docs/金禾通功能截图/微信截图_20231121141658.png
  44. BIN
      docs/金禾通功能截图/微信截图_20231121141735.png
  45. BIN
      docs/金禾通功能截图/微信截图_20231121141818.png
  46. BIN
      docs/金禾通功能截图/微信截图_20231121141829.png
  47. BIN
      docs/金禾通功能截图/微信截图_20231121141917.png
  48. BIN
      docs/金禾通功能截图/微信截图_20231121141935.png
  49. BIN
      docs/金禾通功能截图/微信截图_20231121142021.png
  50. BIN
      docs/金禾通功能截图/微信截图_20231121142113.png
  51. BIN
      docs/金禾通功能截图/微信截图_20231121142208.png
  52. BIN
      docs/金禾通功能截图/微信截图_20231121142214.png
  53. BIN
      docs/金禾通功能截图/微信截图_20231121142219.png
  54. BIN
      docs/金禾通功能截图/微信截图_20231121142230.png
  55. BIN
      docs/金禾通功能截图/微信截图_20231121142321.png
  56. BIN
      docs/金禾通功能截图/微信截图_20231121142416.png
  57. BIN
      docs/金禾通功能截图/微信截图_20231121142433.png
  58. BIN
      docs/金禾通功能截图/微信截图_20231121142437.png
  59. BIN
      docs/金禾通功能截图/微信截图_20231121142532.png

129
docs/databases/table_create.sql

@ -0,0 +1,129 @@
DROP TABLE IF EXISTS `lpk_customer`;
CREATE TABLE `lpk_customer` (
`id` BIGINT(32) NOT NULL AUTO_INCREMENT COMMENT 'ID,唯一编号',
`sid` VARCHAR(64) NOT NULL COMMENT 'sid',
`createTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '记录创建时间',
`remarks` VARCHAR(255) NULL DEFAULT NULL COMMENT '备注信息',
`isEnable` int(11) DEFAULT 1 COMMENT '是否可用',
`wx_mp_openid` VARCHAR(100) NULL DEFAULT NULL COMMENT '微信小程序OpenId',
`mobile` VARCHAR(100) NULL DEFAULT NULL COMMENT '手机号',
`bindDate` datetime NULL DEFAULT NULL COMMENT '手机号绑定时间',
`realName` VARCHAR(100) NULL DEFAULT NULL COMMENT '真实姓名',
`nick` VARCHAR(100) NULL DEFAULT NULL COMMENT '昵称',
`photo` VARCHAR(1024) NULL DEFAULT NULL COMMENT '头像',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB COMMENT='客户信息';
DROP TABLE IF EXISTS `lpk_goods`;
CREATE TABLE `lpk_goods` (
`id` BIGINT(32) NOT NULL AUTO_INCREMENT COMMENT 'ID,唯一编号',
`sid` VARCHAR(64) NOT NULL COMMENT 'sid',
`createTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '记录创建时间',
`remarks` VARCHAR(255) NULL DEFAULT NULL COMMENT '备注信息',
`isEnable` int(11) DEFAULT 1 COMMENT '是否可用',
`code` VARCHAR(100) NULL DEFAULT NULL COMMENT '商品编码',
`barcode` VARCHAR(100) NULL DEFAULT NULL COMMENT '商品条码',
`name` VARCHAR(100) NULL DEFAULT NULL COMMENT '商品名',
`unitName` VARCHAR(100) NULL DEFAULT NULL COMMENT '单位,如:公斤、瓶',
`typeCode` VARCHAR(100) NULL DEFAULT NULL COMMENT '类别编码',
`typeName` VARCHAR(100) NULL DEFAULT NULL COMMENT '类别名称',
`price` double(12,2) NULL DEFAULT NULL COMMENT '商品价格',
`picUrl` VARCHAR(1024) NULL DEFAULT NULL COMMENT '商品图片URL',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB COMMENT='商品信息';
DROP TABLE IF EXISTS `lpk_giftbag`;
CREATE TABLE `lpk_giftbag` (
`id` BIGINT(32) NOT NULL AUTO_INCREMENT COMMENT 'ID,唯一编号',
`sid` VARCHAR(64) NOT NULL COMMENT 'sid',
`createTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '记录创建时间',
`remarks` VARCHAR(255) NULL DEFAULT NULL COMMENT '备注信息',
`isEnable` int(11) DEFAULT 1 COMMENT '是否可用',
`name` VARCHAR(100) NULL DEFAULT NULL COMMENT '礼包名',
`dateStart` datetime NULL DEFAULT NULL COMMENT '有效起始日期',
`dateEnd` datetime NULL DEFAULT NULL COMMENT '有效终止日期',
`boundary` VARCHAR(1024) NULL DEFAULT NULL COMMENT '发放条件',
`boundaryPrice` double(12,2) NULL DEFAULT NULL COMMENT '边界金额',
`iconUrl` VARCHAR(1024) NULL DEFAULT NULL COMMENT '礼包Icon的URL',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB COMMENT='礼包信息';
DROP TABLE IF EXISTS `lpk_giftbag_goods`;
CREATE TABLE `lpk_giftbag_goods` (
`id` BIGINT(32) NOT NULL AUTO_INCREMENT COMMENT 'ID,唯一编号',
`sid` VARCHAR(64) NOT NULL COMMENT 'sid',
`createTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '记录创建时间',
`remarks` VARCHAR(255) NULL DEFAULT NULL COMMENT '备注信息',
`giftbagSid` VARCHAR(100) NULL DEFAULT NULL COMMENT '礼包Sid',
`goodsSid` VARCHAR(100) NULL DEFAULT NULL COMMENT '商品Sid',
`goodsNumber` int(11) DEFAULT 1 COMMENT '商品数量',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB COMMENT='礼包包含商品信息';
DROP TABLE IF EXISTS `lpk_giftcard`;
CREATE TABLE `lpk_giftcard` (
`id` BIGINT(32) NOT NULL AUTO_INCREMENT COMMENT 'ID,唯一编号',
`sid` VARCHAR(64) NOT NULL COMMENT 'sid',
`createTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '记录创建时间',
`remarks` VARCHAR(255) NULL DEFAULT NULL COMMENT '备注信息',
`isEnable` int(11) DEFAULT 1 COMMENT '是否可用',
`giftbagSid` VARCHAR(100) NULL DEFAULT NULL COMMENT '礼包Sid',
`code` VARCHAR(100) NULL DEFAULT NULL COMMENT '卡号',
`codeKey` VARCHAR(100) NULL DEFAULT NULL COMMENT '提货密钥',
`state` int(11) DEFAULT 1 COMMENT '状态:1=未发放,2=未绑定客户,3=未提货,4=已经预约提货(预约部分提货),5=已经提取完成',
`grantName` VARCHAR(100) NULL DEFAULT NULL COMMENT '发放人(行、店)名称',
`grantDate` datetime NULL DEFAULT NULL COMMENT '发放时间',
`customerMobile` VARCHAR(100) NULL DEFAULT NULL COMMENT '绑定客户电话',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB COMMENT='礼包卡信息';
DROP TABLE IF EXISTS `lpk_store`;
CREATE TABLE `lpk_store` (
`id` BIGINT(32) NOT NULL AUTO_INCREMENT COMMENT 'ID,唯一编号',
`sid` VARCHAR(64) NOT NULL COMMENT 'sid',
`createTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '记录创建时间',
`remarks` VARCHAR(255) NULL DEFAULT NULL COMMENT '备注信息',
`isEnable` int(11) DEFAULT 1 COMMENT '是否可用',
`code` VARCHAR(100) NULL DEFAULT NULL COMMENT '编号',
`name` VARCHAR(100) NULL DEFAULT NULL COMMENT '名称',
`address` VARCHAR(100) NULL DEFAULT NULL COMMENT '地址',
`phone` VARCHAR(100) NULL DEFAULT NULL COMMENT '电话',
`businessHours` VARCHAR(100) NULL DEFAULT NULL COMMENT '营业时间,提货时间(早X点到晚X点)',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB COMMENT='取货点(门店)信息';
DROP TABLE IF EXISTS `lpk_reserve_order`;
CREATE TABLE `lpk_reserve_order` (
`id` BIGINT(32) NOT NULL AUTO_INCREMENT COMMENT 'ID,唯一编号',
`sid` VARCHAR(64) NOT NULL COMMENT 'sid',
`createTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '记录创建时间',
`remarks` VARCHAR(255) NULL DEFAULT NULL COMMENT '备注信息',
`isEnable` int(11) DEFAULT 1 COMMENT '是否可用',
`code` VARCHAR(100) NULL DEFAULT NULL COMMENT '编号',
`name` VARCHAR(100) NULL DEFAULT NULL COMMENT '名称',
`address` VARCHAR(100) NULL DEFAULT NULL COMMENT '地址',
`phone` VARCHAR(100) NULL DEFAULT NULL COMMENT '电话',
`businessHours` VARCHAR(100) NULL DEFAULT NULL COMMENT '营业时间,提货时间(早X点到晚X点)',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB COMMENT='取货点(门店)信息';

7
docs/info.txt

@ -0,0 +1,7 @@
小程序id wx4724e3a3c27f36b5
登录邮箱 lzh@yxtsoft.com
汇融惠享
AppID(小程序ID) wx4724e3a3c27f36b5
AppSecret(小程序密钥) 971fd3b8aa7b08ce3e8a5f3e502b1a8d

BIN
docs/xuqiu/预约提货系统-功能列表.xlsx

Binary file not shown.

15
docs/xuqiu/预约提货系统.docx

@ -0,0 +1,15 @@
预约提货系统
客户在银行网点存款,根据存款金额达到的不同档次向客户赠送提货卡,例如存款满1万赠送蔬菜礼包精选款提货卡(5颗白菜,10斤土豆),存款满5万赠送蔬菜礼包豪华款提货卡(25颗白菜,50斤土豆),客户扫描提货卡上的二维码进入手机提货页面(公众号/h5/小程序),输入提货密钥,根据密钥来判断用户获得的是哪种礼包,向客户展示可提货商品明细(需讨论一下部分提货的工作量),客户选择提货点(提货点为合作餐厅,非银行网点),提货时间,提交提货订单后系统生成提货码,提货卡状态由未提货变更为已预约提货。提货点每日根据后台提交内容打印出提货明细进行备货(明细为提货点总蔬菜礼包的提货明细及具体每个客户的提货明细)。客户在提货日到达提货点提货时,工作人员根据打印出的客户提货明细核对客户绑定的手机号、提货码,核对无误后客户提货,一天后提货卡状态自动变更为已提货。
前台页面:
1、客户信息:客户扫码进入后获取用户微信名及绑定手机号。
2、提货卡:客户输入提货卡密钥进行提货预约,客户需选择提货点、提货时间。
3、提货日志:展示客户提货日志(预约的提货日期及提货明细,提货成功后状态变更为已完成提货)
后台功能:
营销发卡设置:可配置提货卡礼包品种、礼包明细,生成提货卡密钥,提货卡有效期,提货卡状态(未提货、已预约提货、已提货),提货卡归属地(可选),发卡。
预约设置:设置客户预约时默认预约时间(例如默认预约时间为2天,客户15号扫码提货,则客户可预约的时间最早为17号,最晚为提货卡有效期最后一天)。后台可单独设置非工作日(非工作日不可提货,前台客户操作页置灰不可选取)。
提货点配置:设置客户可选取的提货点信息,提货点信息主要为名称、地址、电话,后台可对提货点进行启用、禁用操作。
统计报表(支持导出):
提货卡汇总及明细(明细展示提货卡状态)。
提货汇总(提货点备货使用,例如15号汇总需提货白菜100颗,200斤土豆,15号-19号汇总需提货白菜500颗,土豆1000斤)。
客户提货明细(提货点核销使用,例如15号张三提货白菜5颗、土豆10斤,李四提货白菜10颗,土豆20斤)

BIN
docs/金禾通功能截图/微信截图_20231121140027.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 KiB

BIN
docs/金禾通功能截图/微信截图_20231121140210.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

BIN
docs/金禾通功能截图/微信截图_20231121140335.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

BIN
docs/金禾通功能截图/微信截图_20231121140342.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

BIN
docs/金禾通功能截图/微信截图_20231121140522.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 KiB

BIN
docs/金禾通功能截图/微信截图_20231121140657.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

BIN
docs/金禾通功能截图/微信截图_20231121140716.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

BIN
docs/金禾通功能截图/微信截图_20231121140722.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

BIN
docs/金禾通功能截图/微信截图_20231121140813.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

BIN
docs/金禾通功能截图/微信截图_20231121140836.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

BIN
docs/金禾通功能截图/微信截图_20231121140852.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

BIN
docs/金禾通功能截图/微信截图_20231121140900.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

BIN
docs/金禾通功能截图/微信截图_20231121140943.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141006.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141057.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141116.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141157.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141223.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141241.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141246.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141250.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141257.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141332.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141343.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141353.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141358.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141412.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141425.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141444.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141512.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141517.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141554.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141610.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141615.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141627.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141637.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141642.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141646.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141658.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141735.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141818.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141829.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141917.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

BIN
docs/金禾通功能截图/微信截图_20231121141935.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
docs/金禾通功能截图/微信截图_20231121142021.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

BIN
docs/金禾通功能截图/微信截图_20231121142113.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

BIN
docs/金禾通功能截图/微信截图_20231121142208.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

BIN
docs/金禾通功能截图/微信截图_20231121142214.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

BIN
docs/金禾通功能截图/微信截图_20231121142219.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

BIN
docs/金禾通功能截图/微信截图_20231121142230.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

BIN
docs/金禾通功能截图/微信截图_20231121142321.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

BIN
docs/金禾通功能截图/微信截图_20231121142416.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

BIN
docs/金禾通功能截图/微信截图_20231121142433.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

BIN
docs/金禾通功能截图/微信截图_20231121142437.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 KiB

BIN
docs/金禾通功能截图/微信截图_20231121142532.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

Loading…
Cancel
Save