添加账号查询次数接口
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user