1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.ruoyi.common.constant;
|
| /**
| * @Description 对接微信小程序的常量
| * @Author xiaochen
| * @Date 2021/10/19/01914:01
| */
| public class WxConstant {
|
| /**
| * 生成小程序码地址
| */
| public static final String CREATE_CODE_URL = "https://api.weixin.qq.com/cgi-bin/wxaapp/createwxaqrcode?access_token=ACCESS_TOKEN";
|
| /**
| * 高德地图坐标转换
| */
| public static final String ADDRESS_CONVERT_TO_COORDINATE = "https://restapi.amap.com/v3/geocode/geo?key=KEY&address=ADDRESS";
|
|
|
| }
|
|