1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| package com.stylefeng.guns.modular.system.util.qianyuntong;
|
| /**
| * 黔云通配置
| * @author zhibing.pu
| * @Date 2025/6/6 15:03
| */
| public interface QianYunTongProperties {
| /**
| * appkey
| */
| String appkey = "10001104";
| /**
| * 私钥地址
| */
| String privateKeyPath = "C:\\Users\\39373\\Desktop\\黔云通\\private_key_test.pem";
| /**
| * 消费者账号
| */
| String userName = "xiaofei";
| /**
| * 状态
| * 1:生产环境
| * 2:测试环境
| */
| String status = "2";
| /**
| * API地址
| */
| String apiUrl = "https://test-zhongtai.stqcloud.com:10070";
| }
|
|