application冲突解决
This commit is contained in:
commit
e79bdddf02
@ -20,7 +20,7 @@ spring:
|
||||
max-request-size: 1GB
|
||||
datasource:
|
||||
druid:
|
||||
url: jdbc:mysql://192.168.0.109/db_cloud_population?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&autoReconnect=true&failOverReadOnly=false&useSSL=false
|
||||
url: jdbc:mysql://localhost:3306/db_user_management?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&autoReconnect=true&failOverReadOnly=false&useSSL=false
|
||||
db-type: mysql
|
||||
driver-class-name: com.mysql.jdbc.Driver
|
||||
username: root
|
||||
|
@ -259,6 +259,9 @@
|
||||
<if test="keywords != null and keywords != ''">
|
||||
AND (
|
||||
t1.name_of_householder LIKE CONCAT('%', #{keywords}, '%')
|
||||
OR
|
||||
t1.base_id LIKE CONCAT('%', #{keywords}, '%')
|
||||
)
|
||||
</if>
|
||||
<if test="startTime != null and startTime != ''">
|
||||
AND
|
||||
|
@ -268,6 +268,8 @@
|
||||
<if test="keywords != null and keywords != ''">
|
||||
AND (
|
||||
t1.card_number LIKE CONCAT('%', #{keywords}, '%')
|
||||
OR
|
||||
t1.base_id LIKE CONCAT('%', #{keywords}, '%')
|
||||
)
|
||||
</if>
|
||||
<if test="startTime != null and startTime != ''">
|
||||
|
Loading…
Reference in New Issue
Block a user