# pay-sys **Repository Path**: jihui-31/pay-sys ## Basic Information - **Project Name**: pay-sys - **Description**: 支付宝和微信接口的调用 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-11 - **Last Updated**: 2024-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Payment ### 介绍 以SpringBoot + Vue 结合支付宝支付和微信为例,实现支付功能 ### 环境 前端技术栈:vue2 + vue-router + axios + element-ui 后端技术栈:SpringBoot + MyBatis-Plus + MySQL 注:node版本最好使用15以下 ### 软件架构 ├─pay │ ├─.idea │ ├─src │ ├─main │ │ ├─java │ │ └─com │ │ └─manster │ │ └─pay │ │ ├─config │ │ ├─controller │ │ ├─entity │ │ ├─enums │ │ │ ├─alipay │ │ │ └─wxpay │ │ ├─mapper │ │ │ └─xml │ │ ├─service │ │ │ └─impl │ │ ├─task │ │ └─util │ │ │ └─test │ │ └─pay_front ├─dist │ └─static │ ├─css │ ├─fonts │ ├─img │ └─js ├─node_modules │ ├─public └─src ├─api ├─assets │ ├─css │ └─img ├─components ├─router ├─utils └─views ### 支付宝和微信相关接口配置参数 # 支付宝接口配置 alipay.appId=your_alipay_app_id alipay.privateKey=your_alipay_private_key alipay.publicKey=your_alipay_public_key # 微信接口配置 wechat.appId=your_wechat_app_id wechat.appSecret=your_wechat_app_secret wechat.merchantId=your_wechat_merchant_id wechat.apiKey=your_wechat_api_key ### 安装教程 1. 安装依赖 `npm install` 2. 运行项目 `npm run serve`