增加门店车辆列表查询接口

This commit is contained in:
2025-08-27 01:48:16 +08:00
parent ad399295c1
commit f1b4c24135
11 changed files with 186 additions and 6 deletions

View File

@ -29,7 +29,12 @@ spring:
password: Sczx123@
driver-class-name: com.mysql.cj.jdbc.Driver
hikari:
maximum-pool-size: 10
maximum-pool-size: 20 # 最大连接数
minimum-idle: 5 # 最小空闲连接数
connection-timeout: 30000 # 连接超时时间(毫秒)
idle-timeout: 600000 # 空闲连接超时时间(毫秒)
max-lifetime: 1800000 # 连接最大存活时间(毫秒)
leak-detection-threshold: 60000 # 连接泄漏检测阈值(毫秒)
auto-commit: true
connection_init_sql: SELECT 1
redis: