zhwl/README.md
2025-07-01 17:54:58 +08:00

66 lines
2.3 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 智慧文旅管理系统(标准版)
## sql目录说明
### ddl
1.zhwl-standard_ddl.sql文旅系统数据库结构脚本
### dml
1. zhwl-standard_dml.sql文旅系统基础数据初始化脚本
2. zhwl-area_dml.sql文旅系统地区编码数据初始化脚本
## 模块结构
```
zhwl
├── zhwl-admin // 主启动模块
├── zhwl-api-cpmmon // Api接口通用模块
├── zhwl-app // 微信小程序模块
├── zhwl-business // 智慧文旅基础模块
│ │── zhwl-check-point // 检票点模块
│ │── zhwl-guide // 智慧导览模块
│ │── zhwl-message // 短信模块
│ │── zhwl-notice // 消息模块
│ │── zhwl-payment // 支付模块
│ │── zhwl-printset // 打印模块
│ │── zhwl-report // 投诉建议模块
│ │── zhwl-resident // 居民模块
│ │── zhwl-scenic // 景区信息管理模块
│ │── zhwl-statistics // 统计报表模块
│ │── zhwl-ticket // 门票管理模块
│ │── zhwl-ticket-order // 订单管理模块
│ └── zhwl-user // 游客信息管理模块
├── zhwl-cms // CMS内容管理模块
├── zhwl-common // 通用工具模块
├── zhwl-device // 设备管理模块
│ │── zhwl-device-gate // 闸机模块
│ └── zhwl-device-handheld // 手持机模块
├── zhwl-framework // framework框架核心模块
├── zhwl-generator // 代码自动生成模块
├── zhwl-ota // OTA模块
├── zhwl-quartz // 定时任务模块
├── zhwl-travel-agency // 旅行社模块
├── zhwl-wcsc // 文创商城
```
## 打包前注意
1. 把application.yml文件中active的值改为prod。
2. 把下面jar包导入本地maven仓库
* lkl-java-sdk
* TrustPayClient
3. zhwl-payment模块的pom.yml文件中删除lkl-laop-java-sdk依赖的以下内容
```
<systemPath>${project.basedir}/src/main/resources/lib/lkl-java-sdk-1.0.5.jar</systemPath>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/TrustPayClient-V3.3.3.jar</systemPath>
<scope>system</scope>
```