Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
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
项目统一框架
amos-boot-biz
Commits
f1162917
Commit
f1162917
authored
Aug 30, 2021
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.冗余地址
parent
7b8cfff9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
1 deletion
+11
-1
PlanTaskPointInputItemBo.java
...nce/business/entity/mybatis/PlanTaskPointInputItemBo.java
+6
-0
CheckServiceImpl.java
...s/maintenance/business/service/impl/CheckServiceImpl.java
+1
-0
JobService.java
.../java/com/yeejoin/amos/maintenance/quartz/JobService.java
+1
-0
dbTemplate_plan_task.xml
...nce/src/main/resources/db/mapper/dbTemplate_plan_task.xml
+3
-1
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-maintenance-biz/src/main/java/com/yeejoin/amos/maintenance/business/entity/mybatis/PlanTaskPointInputItemBo.java
View file @
f1162917
...
@@ -35,6 +35,12 @@ public class PlanTaskPointInputItemBo {
...
@@ -35,6 +35,12 @@ public class PlanTaskPointInputItemBo {
* 编号
* 编号
*/
*/
private
String
pointNo
;
private
String
pointNo
;
/**
* 地址
*/
private
String
address
;
/**
/**
* 巡检任务id
* 巡检任务id
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-maintenance-biz/src/main/java/com/yeejoin/amos/maintenance/business/service/impl/CheckServiceImpl.java
View file @
f1162917
...
@@ -168,6 +168,7 @@ public class CheckServiceImpl implements ICheckService {
...
@@ -168,6 +168,7 @@ public class CheckServiceImpl implements ICheckService {
check
.
setOwnerId
(
route
.
getOwnerId
());
check
.
setOwnerId
(
route
.
getOwnerId
());
check
.
setOwnerName
(
route
.
getOwnerName
());
check
.
setOwnerName
(
route
.
getOwnerName
());
check
.
setBuildingName
(
point
.
getBuildingName
());
check
.
setBuildingName
(
point
.
getBuildingName
());
check
.
setAddress
(
point
.
getAddress
());
check
.
setEquipmentName
(
point
.
getEquipmentName
());
check
.
setEquipmentName
(
point
.
getEquipmentName
());
check
.
setPlanType
(
detail
.
get
(
"planType"
).
toString
());
check
.
setPlanType
(
detail
.
get
(
"planType"
).
toString
());
check
.
setUserName
(
personIdentity
.
getPersonName
());
check
.
setUserName
(
personIdentity
.
getPersonName
());
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-maintenance-biz/src/main/java/com/yeejoin/amos/maintenance/quartz/JobService.java
View file @
f1162917
...
@@ -202,6 +202,7 @@ public class JobService implements IJobService {
...
@@ -202,6 +202,7 @@ public class JobService implements IJobService {
check
.
setBeginTime
(
planTask
.
getBeginTime
());
check
.
setBeginTime
(
planTask
.
getBeginTime
());
check
.
setEndTime
(
planTask
.
getEndTime
());
check
.
setEndTime
(
planTask
.
getEndTime
());
check
.
setBuildingName
(
arg
.
getBuildingName
());
check
.
setBuildingName
(
arg
.
getBuildingName
());
check
.
setAddress
(
arg
.
getAddress
());
check
.
setUploadTime
(
new
Date
());
check
.
setUploadTime
(
new
Date
());
check
.
setPlanId
(
arg
.
getPlanId
());
check
.
setPlanId
(
arg
.
getPlanId
());
check
.
setPlanName
(
arg
.
getPlanName
());
check
.
setPlanName
(
arg
.
getPlanName
());
...
...
amos-boot-system-maintenance/src/main/resources/db/mapper/dbTemplate_plan_task.xml
View file @
f1162917
...
@@ -393,6 +393,7 @@
...
@@ -393,6 +393,7 @@
temp1.buildingName,
temp1.buildingName,
temp1.equipmentName,
temp1.equipmentName,
temp1.remark as riskAndManage,
temp1.remark as riskAndManage,
temp1.address,
temp1.ownerName,
temp1.ownerName,
pii.`name` inputName,
pii.`name` inputName,
temp2.*
temp2.*
...
@@ -416,7 +417,8 @@
...
@@ -416,7 +417,8 @@
p.point_no as pointNo,
p.point_no as pointNo,
p.building_name as buildingName,
p.building_name as buildingName,
p.equipment_name as equipmentName,
p.equipment_name as equipmentName,
p.remark
p.remark,
p.address
FROM
FROM
p_route_point_item prpi
p_route_point_item prpi
LEFT JOIN p_route_point prp ON prp.id = prpi.route_point_id
LEFT JOIN p_route_point prp ON prp.id = prpi.route_point_id
...
...
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