diff --git a/docs/databases/table_create.sql b/docs/databases/table_create.sql new file mode 100644 index 0000000..12275ab --- /dev/null +++ b/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='取货点(门店)信息'; + + diff --git a/docs/info.txt b/docs/info.txt new file mode 100644 index 0000000..a998faa --- /dev/null +++ b/docs/info.txt @@ -0,0 +1,7 @@ +小程序id wx4724e3a3c27f36b5 +登录邮箱 lzh@yxtsoft.com + + +汇融惠享 +AppID(小程序ID) wx4724e3a3c27f36b5 +AppSecret(小程序密钥) 971fd3b8aa7b08ce3e8a5f3e502b1a8d diff --git a/docs/xuqiu/预约提货系统-功能列表.xlsx b/docs/xuqiu/预约提货系统-功能列表.xlsx new file mode 100644 index 0000000..7375ecd Binary files /dev/null and b/docs/xuqiu/预约提货系统-功能列表.xlsx differ diff --git a/docs/xuqiu/预约提货系统.docx b/docs/xuqiu/预约提货系统.docx new file mode 100644 index 0000000..f746a66 --- /dev/null +++ b/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斤) + diff --git a/docs/金禾通功能截图/微信截图_20231121140027.png b/docs/金禾通功能截图/微信截图_20231121140027.png new file mode 100644 index 0000000..11cf834 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140027.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121140210.png b/docs/金禾通功能截图/微信截图_20231121140210.png new file mode 100644 index 0000000..a05754e Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140210.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121140335.png b/docs/金禾通功能截图/微信截图_20231121140335.png new file mode 100644 index 0000000..6bee259 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140335.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121140342.png b/docs/金禾通功能截图/微信截图_20231121140342.png new file mode 100644 index 0000000..56d0828 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140342.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121140522.png b/docs/金禾通功能截图/微信截图_20231121140522.png new file mode 100644 index 0000000..833474c Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140522.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121140657.png b/docs/金禾通功能截图/微信截图_20231121140657.png new file mode 100644 index 0000000..92d30e0 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140657.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121140716.png b/docs/金禾通功能截图/微信截图_20231121140716.png new file mode 100644 index 0000000..8499d4d Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140716.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121140722.png b/docs/金禾通功能截图/微信截图_20231121140722.png new file mode 100644 index 0000000..68959bf Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140722.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121140813.png b/docs/金禾通功能截图/微信截图_20231121140813.png new file mode 100644 index 0000000..c857b09 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140813.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121140836.png b/docs/金禾通功能截图/微信截图_20231121140836.png new file mode 100644 index 0000000..37a7414 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140836.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121140852.png b/docs/金禾通功能截图/微信截图_20231121140852.png new file mode 100644 index 0000000..f0ffef9 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140852.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121140900.png b/docs/金禾通功能截图/微信截图_20231121140900.png new file mode 100644 index 0000000..9afa1ed Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140900.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121140943.png b/docs/金禾通功能截图/微信截图_20231121140943.png new file mode 100644 index 0000000..7233552 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121140943.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141006.png b/docs/金禾通功能截图/微信截图_20231121141006.png new file mode 100644 index 0000000..277b8f4 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141006.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141057.png b/docs/金禾通功能截图/微信截图_20231121141057.png new file mode 100644 index 0000000..cb83509 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141057.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141116.png b/docs/金禾通功能截图/微信截图_20231121141116.png new file mode 100644 index 0000000..5d9779c Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141116.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141157.png b/docs/金禾通功能截图/微信截图_20231121141157.png new file mode 100644 index 0000000..5596d56 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141157.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141223.png b/docs/金禾通功能截图/微信截图_20231121141223.png new file mode 100644 index 0000000..4bc2b86 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141223.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141241.png b/docs/金禾通功能截图/微信截图_20231121141241.png new file mode 100644 index 0000000..16c23b3 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141241.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141246.png b/docs/金禾通功能截图/微信截图_20231121141246.png new file mode 100644 index 0000000..9848bac Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141246.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141250.png b/docs/金禾通功能截图/微信截图_20231121141250.png new file mode 100644 index 0000000..00e00cc Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141250.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141257.png b/docs/金禾通功能截图/微信截图_20231121141257.png new file mode 100644 index 0000000..3a56c85 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141257.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141332.png b/docs/金禾通功能截图/微信截图_20231121141332.png new file mode 100644 index 0000000..a0ad6b7 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141332.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141343.png b/docs/金禾通功能截图/微信截图_20231121141343.png new file mode 100644 index 0000000..d25bdaa Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141343.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141353.png b/docs/金禾通功能截图/微信截图_20231121141353.png new file mode 100644 index 0000000..be031a2 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141353.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141358.png b/docs/金禾通功能截图/微信截图_20231121141358.png new file mode 100644 index 0000000..10c9624 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141358.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141412.png b/docs/金禾通功能截图/微信截图_20231121141412.png new file mode 100644 index 0000000..b4c64e8 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141412.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141425.png b/docs/金禾通功能截图/微信截图_20231121141425.png new file mode 100644 index 0000000..9b9bb98 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141425.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141444.png b/docs/金禾通功能截图/微信截图_20231121141444.png new file mode 100644 index 0000000..bcc7b0a Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141444.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141512.png b/docs/金禾通功能截图/微信截图_20231121141512.png new file mode 100644 index 0000000..3b51d9e Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141512.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141517.png b/docs/金禾通功能截图/微信截图_20231121141517.png new file mode 100644 index 0000000..59efc2a Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141517.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141554.png b/docs/金禾通功能截图/微信截图_20231121141554.png new file mode 100644 index 0000000..bad40fd Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141554.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141610.png b/docs/金禾通功能截图/微信截图_20231121141610.png new file mode 100644 index 0000000..9c0bcd7 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141610.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141615.png b/docs/金禾通功能截图/微信截图_20231121141615.png new file mode 100644 index 0000000..7dc3edc Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141615.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141627.png b/docs/金禾通功能截图/微信截图_20231121141627.png new file mode 100644 index 0000000..2eb7844 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141627.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141637.png b/docs/金禾通功能截图/微信截图_20231121141637.png new file mode 100644 index 0000000..844077d Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141637.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141642.png b/docs/金禾通功能截图/微信截图_20231121141642.png new file mode 100644 index 0000000..70e6d86 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141642.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141646.png b/docs/金禾通功能截图/微信截图_20231121141646.png new file mode 100644 index 0000000..1f3bc87 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141646.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141658.png b/docs/金禾通功能截图/微信截图_20231121141658.png new file mode 100644 index 0000000..8e58618 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141658.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141735.png b/docs/金禾通功能截图/微信截图_20231121141735.png new file mode 100644 index 0000000..f3a52cd Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141735.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141818.png b/docs/金禾通功能截图/微信截图_20231121141818.png new file mode 100644 index 0000000..6c1a39b Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141818.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141829.png b/docs/金禾通功能截图/微信截图_20231121141829.png new file mode 100644 index 0000000..18939eb Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141829.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141917.png b/docs/金禾通功能截图/微信截图_20231121141917.png new file mode 100644 index 0000000..e848f0c Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141917.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121141935.png b/docs/金禾通功能截图/微信截图_20231121141935.png new file mode 100644 index 0000000..70feb13 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121141935.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121142021.png b/docs/金禾通功能截图/微信截图_20231121142021.png new file mode 100644 index 0000000..54d0369 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121142021.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121142113.png b/docs/金禾通功能截图/微信截图_20231121142113.png new file mode 100644 index 0000000..b63ac4d Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121142113.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121142208.png b/docs/金禾通功能截图/微信截图_20231121142208.png new file mode 100644 index 0000000..3e21b8a Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121142208.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121142214.png b/docs/金禾通功能截图/微信截图_20231121142214.png new file mode 100644 index 0000000..5a83143 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121142214.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121142219.png b/docs/金禾通功能截图/微信截图_20231121142219.png new file mode 100644 index 0000000..264b40a Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121142219.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121142230.png b/docs/金禾通功能截图/微信截图_20231121142230.png new file mode 100644 index 0000000..f5f2af6 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121142230.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121142321.png b/docs/金禾通功能截图/微信截图_20231121142321.png new file mode 100644 index 0000000..02be0ad Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121142321.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121142416.png b/docs/金禾通功能截图/微信截图_20231121142416.png new file mode 100644 index 0000000..eb41068 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121142416.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121142433.png b/docs/金禾通功能截图/微信截图_20231121142433.png new file mode 100644 index 0000000..84ef478 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121142433.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121142437.png b/docs/金禾通功能截图/微信截图_20231121142437.png new file mode 100644 index 0000000..7d98fa3 Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121142437.png differ diff --git a/docs/金禾通功能截图/微信截图_20231121142532.png b/docs/金禾通功能截图/微信截图_20231121142532.png new file mode 100644 index 0000000..306d59a Binary files /dev/null and b/docs/金禾通功能截图/微信截图_20231121142532.png differ