添加账号查询次数接口

This commit is contained in:
2025-06-13 16:58:16 +08:00
parent e5bbc22645
commit 9460926eee
11 changed files with 95 additions and 47 deletions

View File

@@ -14,11 +14,10 @@ spring:
# Redis 配置
# todo 需替换配置
redis:
database: 1
database: 0
host: localhost
port: 6379
timeout: 5000
password: 123456
rabbitmq:
host: localhost
port: 5672

View File

@@ -14,11 +14,10 @@ spring:
# Redis 配置
# todo 需替换配置
redis:
database: 1
database: 0
host: localhost
port: 6379
timeout: 5000
password: 123456
rabbitmq:
host: localhost
port: 5672

View File

@@ -50,35 +50,8 @@ mybatis-plus:
logic-delete-field: isDelete # 全局逻辑删除的实体字段名
logic-delete-value: 1 # 逻辑已删除值(默认为 1
logic-not-delete-value: 0 # 逻辑未删除值(默认为 0
# 微信相关
wx:
# 微信公众平台
# todo 需替换配置
mp:
token: xxx
aesKey: xxx
appId: xxx
secret: xxx
config-storage:
http-client-type: HttpClient
key-prefix: wx
redis:
host: 127.0.0.1
port: 6379
type: Memory
# 微信开放平台
# todo 需替换配置
open:
appId: xxx
appSecret: xxx
# 对象存储
# todo 需替换配置
cos:
client:
accessKey: xxx
secretKey: xxx
region: xxx
bucket: xxx
# 接口文档配置
knife4j:
enable: true

View File

@@ -166,7 +166,7 @@
</update>
<select id="selectCountryGroupCountryByCountryName" resultType="com.yupi.springbootinit.model.vo.country.CountryInfoVO">
SELECT c2.country_name
SELECT c2.country_name as countryName
FROM country_info c1
JOIN country_info c2 ON c1.country_group = c2.country_group
WHERE c1.country_name = #{countryName,jdbcType=VARCHAR}