Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
znks
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王夏晖
znks
Commits
0c32f520
Commit
0c32f520
authored
Sep 14, 2018
by
leyboy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.开锁记录增加模糊查询
parent
55c094c2
Changes
9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
201 additions
and
188 deletions
+201
-188
workspace.xml
.idea/workspace.xml
+189
-167
AdminVO.java
adc-da-main/src/main/java/com/adc/da/znks/vo/AdminVO.java
+0
-9
application-dev.properties
adc-da-main/src/main/resources/application-dev.properties
+1
-0
application-prd.properties
adc-da-main/src/main/resources/application-prd.properties
+1
-1
application.properties
adc-da-main/src/main/resources/application.properties
+0
-1
LockRecordMapper.xml
...c/main/resources/mybatis/mapper/znks/LockRecordMapper.xml
+8
-8
application-dev.properties
adc-da-main/target/classes/application-dev.properties
+1
-0
application-prd.properties
adc-da-main/target/classes/application-prd.properties
+1
-1
application.properties
adc-da-main/target/classes/application.properties
+0
-1
No files found.
.idea/workspace.xml
View file @
0c32f520
This diff is collapsed.
Click to expand it.
adc-da-main/src/main/java/com/adc/da/znks/vo/AdminVO.java
View file @
0c32f520
...
...
@@ -14,15 +14,6 @@ public class AdminVO {
@JSONField
(
format
=
"yyyy-MM-dd"
)
private
String
createTime
;
private
String
adminId
;
public
String
getAdminId
()
{
return
adminId
;
}
public
void
setAdminId
(
String
adminId
)
{
this
.
adminId
=
adminId
;
}
public
String
getAdminName
()
{
return
adminName
;
...
...
adc-da-main/src/main/resources/application-dev.properties
View file @
0c32f520
...
...
@@ -13,6 +13,7 @@ spring.datasource.username = root
#后端端口
server.port
=
8888
#server.port=${random.int(8000,9000)}
useSSL
=
false
...
...
adc-da-main/src/main/resources/application-prd.properties
View file @
0c32f520
...
...
@@ -7,7 +7,7 @@ spring.datasource.username = adc_platform
spring.datasource.password
=
adc_platform
#后端端口
server.port
=
8080
server.port
=
${random.int(8000,9000)}
#验证码后台模式:1为不开启,2为开启,3为三次输错用户名或密码才开启,默认为1
verifyCodeMode
=
1
...
...
adc-da-main/src/main/resources/application.properties
View file @
0c32f520
...
...
@@ -8,7 +8,6 @@
#spring.datasource.password = root
# ===============================
# = DATA SOURCE2
# ===============================
...
...
adc-da-main/src/main/resources/mybatis/mapper/znks/LockRecordMapper.xml
View file @
0c32f520
...
...
@@ -49,14 +49,14 @@
lr.lock_type as lockType,lr.time as lockTime
from tb_lock_record lr,tb_device d,tb_user u
<where>
<
trim
suffixOverrides=
"and
"
>
<if
test=
"deviceName!=null"
>
d.deviceName = #{deviceNam
e} and
<
if
test=
"deviceName!=null and deviceName!=''
"
>
<bind
name=
"deviceNameLike"
value=
"'%'+deviceName+'%'"
/
>
d.name LIKE #{deviceNameLik
e} and
</if>
<if
test=
"telphone!=null"
>
u.telphone = #{telphone} and
<if
test=
"telphone!=null and telphone !=''"
>
<bind
name=
"telphoneLike"
value=
"'%'+telphone+'%'"
/>
u.temphone LIKE #{telphoneLike} and
</if>
</trim>
u.id = d.user_id and
d.code = lr.device_id
and lr.lock_type != ''
...
...
adc-da-main/target/classes/application-dev.properties
View file @
0c32f520
...
...
@@ -13,6 +13,7 @@ spring.datasource.username = root
#后端端口
server.port
=
8888
#server.port=${random.int(8000,9000)}
useSSL
=
false
...
...
adc-da-main/target/classes/application-prd.properties
View file @
0c32f520
...
...
@@ -7,7 +7,7 @@ spring.datasource.username = adc_platform
spring.datasource.password
=
adc_platform
#后端端口
server.port
=
8080
server.port
=
${random.int(8000,9000)}
#验证码后台模式:1为不开启,2为开启,3为三次输错用户名或密码才开启,默认为1
verifyCodeMode
=
1
...
...
adc-da-main/target/classes/application.properties
View file @
0c32f520
...
...
@@ -8,7 +8,6 @@
#spring.datasource.password = root
# ===============================
# = DATA SOURCE2
# ===============================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment