深圳停车平台

This commit is contained in:
Guoqs
2025-02-14 14:09:48 +08:00
parent fbbab3019d
commit eec3b20393
7 changed files with 120 additions and 23 deletions

View File

@@ -233,4 +233,17 @@ alipay:
# AES密钥
encryptKey: 0TOgnthQKQtoXJaSn5Bbhg==
charset: utf-8
signType: RSA2
signType: RSA2
# 停车道闸配置
parking:
# 深圳停车道闸
qcyuns:
# 车场接口地址
url: http://test-gateway.qcyuns.com/park-data-api/data/centre/api/v1
# 车场密钥(分配)
secretKey: K9OGNA7CIY8N5GXD8HF3WVDMEZNFKL3F
# 车场ID(分配)
parkId: 61578
# 机构ID(分配)
orgId: BTTEST01

View File

@@ -228,4 +228,17 @@ alipay:
# AES密钥
encryptKey: 0TOgnthQKQtoXJaSn5Bbhg==
charset: utf-8
signType: RSA2
signType: RSA2
# 停车道闸配置
parking:
# 深圳停车道闸
qcyuns:
# 车场接口地址
url: https://g.qcyuns.com/park-data-api/data/centre/api/v1
# 车场密钥(分配)
secretKey: 9C7D1BD0D5CA141B2EBB6BBE5F9E188D
# 车场ID(分配)
parkId: 66291
# 机构ID(分配)
orgId: DCWYPROD20250210

View File

@@ -228,4 +228,17 @@ alipay:
# AES密钥
encryptKey: 0TOgnthQKQtoXJaSn5Bbhg==
charset: utf-8
signType: RSA2
signType: RSA2
# 停车道闸配置
parking:
# 深圳停车道闸
qcyuns:
# 车场接口地址
url: http://test-gateway.qcyuns.com/park-data-api/data/centre/api/v1
# 车场密钥(分配)
secretKey: K9OGNA7CIY8N5GXD8HF3WVDMEZNFKL3F
# 车场ID(分配)
parkId: 61578
# 机构ID(分配)
orgId: BTTEST01

View File

@@ -231,4 +231,17 @@ alipay:
# AES密钥
encryptKey: 0TOgnthQKQtoXJaSn5Bbhg==
charset: utf-8
signType: RSA2
signType: RSA2
# 停车道闸配置
parking:
# 深圳停车道闸
qcyuns:
# 车场接口地址
url: http://test-gateway.qcyuns.com/park-data-api/data/centre/api/v1
# 车场密钥(分配)
secretKey: K9OGNA7CIY8N5GXD8HF3WVDMEZNFKL3F
# 车场ID(分配)
parkId: 61578
# 机构ID(分配)
orgId: BTTEST01

View File

@@ -304,19 +304,19 @@ public class SpringBootTestController {
@Test
public void issuanceOfParkingTicketsTest() {
QcyunParkCouponDTO dto = QcyunParkCouponDTO.builder()
.plateNumber("QWE443")
.plateNumber("B99614")
.stationId("")
.stationName("测试站点")
.orgId("BTTEST01")
.parkId("")
.parkId("61578")
.build();
qcyunsService.issuanceOfParkingTickets(dto);
}
@Test
public void getCarInfoTest() {
String parkId = "11609";
String plateNumber = "QWE443";
String parkId = "61578";
String plateNumber = "B99613";
String URL = "http://test-gateway.qcyuns.com/park-data-api/data/centre/api/v1";
String secretKey = "K9OGNA7CIY8N5GXD8HF3WVDMEZNFKL3F";