Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
AmosBankPatrolRoot
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
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
bank
AmosBankPatrolRoot
Commits
67be7a1c
Commit
67be7a1c
authored
Jun 17, 2020
by
zhengjiangtao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug
parent
618f20b8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
PointCheckInfoBusinessRespone.java
...l/common/core/response/PointCheckInfoBusinessRespone.java
+14
-0
dbTemplate_check.xml
...olStart/src/main/resources/db/mapper/dbTemplate_check.xml
+2
-0
No files found.
AmosBankPatrolCommon/src/main/java/com/yeejoin/amos/patrol/common/core/response/PointCheckInfoBusinessRespone.java
View file @
67be7a1c
...
@@ -18,6 +18,11 @@ public class PointCheckInfoBusinessRespone {
...
@@ -18,6 +18,11 @@ public class PointCheckInfoBusinessRespone {
private
String
nodeState
;
private
String
nodeState
;
private
Long
checkId
;
private
Long
checkId
;
/**
* 巡检人ID
*/
private
String
userId
;
/**
/**
* 检查项
* 检查项
*/
*/
...
@@ -77,4 +82,13 @@ public class PointCheckInfoBusinessRespone {
...
@@ -77,4 +82,13 @@ public class PointCheckInfoBusinessRespone {
public
void
setItems
(
List
<
CheckInputBusinessResponse
>
items
)
{
public
void
setItems
(
List
<
CheckInputBusinessResponse
>
items
)
{
this
.
items
=
items
;
this
.
items
=
items
;
}
}
public
String
getUserId
()
{
return
userId
;
}
public
void
setUserId
(
String
userId
)
{
this
.
userId
=
userId
;
}
}
}
AmosBankPatrolStart/src/main/resources/db/mapper/dbTemplate_check.xml
View file @
67be7a1c
...
@@ -1823,6 +1823,7 @@
...
@@ -1823,6 +1823,7 @@
<result
property=
"id"
column=
"pointId"
/>
<result
property=
"id"
column=
"pointId"
/>
<result
property=
"name"
column=
"pointName"
/>
<result
property=
"name"
column=
"pointName"
/>
<result
property=
"nodeState"
column=
"status"
/>
<result
property=
"nodeState"
column=
"status"
/>
<result
property=
"userId"
column=
"user_id"
/>
<collection
property=
"pointInputitems"
<collection
property=
"pointInputitems"
ofType=
"com.yeejoin.amos.patrol.common.core.response.CheckInputBusinessResponse"
ofType=
"com.yeejoin.amos.patrol.common.core.response.CheckInputBusinessResponse"
select=
"queryPointInputBu"
column=
"{checkId=checkId}"
>
select=
"queryPointInputBu"
column=
"{checkId=checkId}"
>
...
@@ -1833,6 +1834,7 @@
...
@@ -1833,6 +1834,7 @@
pc.point_id pointId,
pc.point_id pointId,
pp.`name` pointName,
pp.`name` pointName,
pc.is_ok status,
pc.is_ok status,
pc.user_id as userId,
pc.id checkId
pc.id checkId
FROM
FROM
p_check pc
p_check pc
...
...
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